void monitor::EventMonitor::init() { LogEnterExit logging(__FUNCTION__, __FILE__, __LINE__); NvmMonitorBase::init(); startOfDay(); }
//////////////////////////////////////////////////////////////////////////////// // Postfix increment by one day. void Date::operator++ (int) { Date tomorrow = (startOfDay () + 90001).startOfDay (); tomorrow = Date (tomorrow.month (), tomorrow.day (), tomorrow.year (), hour (), minute (), second ()); _t = tomorrow._t; }
//////////////////////////////////////////////////////////////////////////////// // Postfix decrement by one day. void Date::operator-- (int) { Date yesterday = startOfDay () - 1; yesterday = Date (yesterday.month (), yesterday.day (), yesterday.year (), hour (), minute (), second ()); _t = yesterday._t; }