1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-03-15
- * Changed: 2024-09-11
- *
- * */
- #ifndef LS_STD_POSIX_CLOCK_HPP
- #define LS_STD_POSIX_CLOCK_HPP
- #include "IClock.hpp"
- #include <cstdint>
- #include <ls-std/time/type/DateParameterTypes.hpp>
- /*
- * @doc: class(name: 'PosixClock', package: 'time')
- * @doc: time.PosixClock.description('This is a POSIX based internal time.')
- * */
- namespace ls::std::time
- {
- class PosixClock : public ls::std::time::IClock
- {
- public:
- PosixClock();
- ~PosixClock() noexcept override;
- [[nodiscard]] bool setTime(const ls::std::time::DateParameter &_dateParameter) override;
- };
- }
- #endif
|