/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-03-15 * Changed: 2023-05-18 * * */ #ifndef LS_STD_SYSTEM_TIME_PARAMETER_HPP #define LS_STD_SYSTEM_TIME_PARAMETER_HPP #include "IClock.hpp" #include #include namespace ls::std::time { class LS_STD_DYNAMIC_GOAL SystemTimeParameter { public: SystemTimeParameter(); ~SystemTimeParameter(); [[nodiscard]] ::std::shared_ptr getClock() const; void setClock(const ::std::shared_ptr &_clock); private: ::std::shared_ptr clock{}; }; } #endif