SystemTimeParameter.cpp 716 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Co-Author: Claude Sonnet 4.6 (LLM)
  4. * Company: Lynar Studios
  5. * E-Mail: webmaster@lynarstudios.com
  6. * Created: 2023-03-15
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #include <ls-std/time/system-time/SystemTimeParameter.hpp>
  11. #include <memory>
  12. using ls::standard::time::IClock;
  13. using ls::standard::time::SystemTimeParameter;
  14. using std::shared_ptr;
  15. SystemTimeParameter::SystemTimeParameter() = default;
  16. SystemTimeParameter::~SystemTimeParameter() = default;
  17. shared_ptr<IClock> SystemTimeParameter::getClock() const
  18. {
  19. return this->clock;
  20. }
  21. void SystemTimeParameter::setClock(const shared_ptr<IClock> &_clock)
  22. {
  23. this->clock = _clock;
  24. }