123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-14
- * Changed: 2021-05-22
- *
- * */
- #ifndef LS_STD_DATE_HPP
- #define LS_STD_DATE_HPP
- #include <ls_std/base/Class.hpp>
- #include <ctime>
- namespace ls_std
- {
- class Date : public ls_std::Class
- {
- public:
- Date();
- ~Date() override = default;
- // arithmetic operators
- ls_std::Date &operator+(int _value);
- ls_std::Date &operator-(int _value);
- ls_std::Date &operator+=(int _value);
- ls_std::Date &operator-=(int _value);
- // additional functionality
- bool after(const ls_std::Date &_foreignDate) const;
- bool before(const ls_std::Date &_foreignDate) const;
- int getDay();
- int getHour();
- int getMinute();
- int getMonth();
- int getSecond();
- time_t getTime() const;
- int getYear();
- void setTime(time_t _timestamp);
- std::string toString();
- private:
- time_t timestamp{};
- tm *localTime{};
- void _decrementByDays(int _value);
- void _incrementByDays(int _value);
- void _init();
- };
- }
- #endif
|