makes it 1 .. 7
| 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 |
| 82 | int getYearday() const { return m_tm.tm_yday + 1; } // makes it 1 .. 366 |
| 83 | |
| 84 | // 1900 as per POSIX mktime() et al |
| 85 | static inline unsigned int baseYear() { |
no outgoing calls
no test coverage detected