intra-day useless for date class int getSeconds() const { return m_tm.tm_sec; } int getMinutes() const { return m_tm.tm_min; } int getHours() const { return m_tm.tm_hour; }
| 76 | //int getMinutes() const { return m_tm.tm_min; } |
| 77 | //int getHours() const { return m_tm.tm_hour; } |
| 78 | int getDay() const { return m_tm.tm_mday; } |
| 79 | int getMonth() const { return m_tm.tm_mon + 1; } // makes it 1 .. 12 |
| 80 | int getYear() const { return m_tm.tm_year; } // does include 1900 (see Date.cpp) |
| 81 | int getWeekday() const { return m_tm.tm_wday + 1; } // makes it 1 .. 7 |
no outgoing calls