/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-03-15 * Changed: 2026-06-23 * * */ #ifndef LS_STD_POSIX_CLOCK_HPP #define LS_STD_POSIX_CLOCK_HPP #include "IClock.hpp" #include #include /* * @doc: class(name: 'PosixClock', package: 'time') * @doc: time.PosixClock.description('This is a POSIX based internal time.') * */ namespace ls::standard::time { class PosixClock : public ls::standard::time::IClock { public: PosixClock(); ~PosixClock() noexcept override; [[nodiscard]] bool setTime(const ls::standard::time::DateParameter &_dateParameter) override; }; } #endif