FACT++  1.0
Time::Time ( short  year,
unsigned char  month,
unsigned char  day,
unsigned char  hh = 0,
unsigned char  mm = 0,
unsigned char  ss = 0,
unsigned int  microsec = 0 
)

Construct a Time from a date and time.

Parameters
year,month,day,hh,mm,ss,microsecA full date and time down to microsecond precision. From the end arguments can be omitted.

Definition at line 128 of file Time.cc.

131 : ptime(boost::gregorian::date(year, month, day),
132  time_duration(hh, mm, ss, microsec*pow(10, time_duration::num_fractional_digits()-6)))
133 {
134 }