1234567891011121314151617181920212223242526272829 |
- #ifndef LS_STD_I_CLOCK_HPP
- #define LS_STD_I_CLOCK_HPP
- #include <ls-std/core/definition.hpp>
- #include <ls-std/time/common/DateParameter.hpp>
- namespace ls::std::time
- {
- ls_std_class IClock
- {
- public:
- IClock();
- virtual ~IClock();
- virtual bool setTime(const DateParameter &_dateParameter) = 0;
- };
- }
- #endif
|