12345678910111213141516171819202122232425262728 |
- #ifndef BHO_MYSQL_TIME_HPP
- #define BHO_MYSQL_TIME_HPP
- #include <chrono>
- namespace bho {
- namespace mysql {
- using time = std::chrono::microseconds;
- constexpr time min_time = -std::chrono::hours(839);
- constexpr time max_time = std::chrono::hours(839);
- }
- }
- #endif
|