| 40 | } |
| 41 | |
| 42 | TDate::TDate(const char* yyyymmdd) |
| 43 | : Timestamp(GetDateStart(ParseDate(yyyymmdd))) |
| 44 | { |
| 45 | } |
| 46 | |
| 47 | TDate::TDate(const TString& yyyymmdd) |
| 48 | : Timestamp(GetDateStart(ParseDate(yyyymmdd.c_str()))) |
nothing calls this directly
no test coverage detected