| 324 | |
| 325 | void set_date(const boost::gregorian::date d) { date_ = d; Validate(); } |
| 326 | void set_time(const boost::posix_time::time_duration t) { time_ = t; Validate(); } |
| 327 | const boost::gregorian::date& date() const { return date_; } |
| 328 | const boost::posix_time::time_duration& time() const { return time_; } |
| 329 |