blob: 8f81ec4e81faac27140b2738374dfa8b9e6981dc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "icetraySupport.h"
#include "commonHelpers.h"
template<>
void
IceTray::AbstractDatabaseClient::bind1<Common::DateTime>(int x, DB::Command * cmd, const Common::DateTime & dt)
{
cmd->bindParamT(x, *dt);
}
|