ls-std-time.hpp 793 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-16
  6. * Changed: 2023-04-01
  7. *
  8. * */
  9. #ifndef LS_STD_LS_STD_TIME_HPP
  10. #define LS_STD_LS_STD_TIME_HPP
  11. #include <ls-std/time/common/DateParameter.hpp>
  12. #include <ls-std/time/common/DateParameterMapper.hpp>
  13. #include <ls-std/time/system-time/IClock.hpp>
  14. #if defined(unix) || defined(__APPLE__)
  15. #include <ls-std/time/system-time/PosixClock.hpp>
  16. #endif
  17. #include <ls-std/time/system-time/SystemTime.hpp>
  18. #include <ls-std/time/system-time/SystemTimeParameter.hpp>
  19. #ifdef _WIN32
  20. #include <ls-std/time/system-time/WindowsClock.hpp>
  21. #endif
  22. #include <ls-std/time/type/DateParameterTypes.hpp>
  23. #include <ls-std/time/Date.hpp>
  24. #endif