/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2022-05-16 * Changed: 2024-09-09 * * */ #ifndef LS_STD_LS_STD_TIME_HPP #define LS_STD_LS_STD_TIME_HPP /* * @doc: package(name: 'time') * @doc: time.description('This package provides convenient time functionalities and data structures, like a Date class for representing a date or SystemTime for setting a systems local time.') * */ #include #include #include #if defined(unix) || defined(__APPLE__) #include #endif #include #include #ifdef _WIN32 #include #endif #include #include #endif