87a88,90
> /** should the year be interpreted as BCD? */
> bool year_is_bcd;
>
113c116,117
< RTC(const std::string &name, Tsunami* tsunami, time_t t, Tick i);
---
> RTC(const std::string &name, Tsunami* tsunami,
> const std::vector<int> &t, bool bcd, Tick i);
123a128,130
> /** RTC get the date */
> std::string getDateString();
>
316c323,324
< time_t init_time;
---
> std::vector<int> init_time;
> bool year_is_bcd;
317a326
>