| 8 | struct Locale; |
| 9 | |
| 10 | class Duration |
| 11 | { |
| 12 | public: |
| 13 | enum class Units |
| 14 | { |
| 15 | Days = 0, |
| 16 | Hours = 1, |
| 17 | Minutes = 2, |
| 18 | }; |
| 19 | |
| 20 | explicit Duration(unsigned long seconds); |
| 21 | |
| 22 | std::chrono::seconds const & GetUnderlying() const noexcept { return m_seconds; } |
| 23 | |
| 24 | private: |
| 25 | std::chrono::seconds const m_seconds; |
| 26 | }; |
| 27 | |
| 28 | std::string DebugPrint(Duration::Units units); |
| 29 |
no outgoing calls
no test coverage detected