| 51 | int getSeconds() const { return m_tm.tm_sec; } |
| 52 | int getMinutes() const { return m_tm.tm_min; } |
| 53 | int getHours() const { return m_tm.tm_hour; } |
| 54 | int getDay() const { return m_tm.tm_mday; } |
| 55 | int getMonth() const { return m_tm.tm_mon + 1; } // makes it 1 .. 12 |
| 56 | int getYear() const { return m_tm.tm_year ; } |
no outgoing calls
no test coverage detected