vega
age.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <stdint.h>
4 #include <string>
5 
6 namespace vega {
7  class Age {
8  public:
9  enum class Unit : char {
10  DAY = 'D',
11  WEEK = 'W',
12  MONTH = 'M',
13  YEAR = 'Y'
14  };
15 
16  private:
17  uint16_t m_count;
18  Unit m_unit;
19 
20  public:
21  Age(uint16_t count, Unit unit);
22  explicit Age(const std::string& s);
23 
24  uint16_t count() const;
25  Unit unit() const;
26  std::string str() const;
27 
28  bool operator==(const Age& other) const;
29  bool operator!=(const Age& other) const;
30  };
31 }
Unit unit() const
Definition: age.h:7
bool operator==(const Age &other) const
uint16_t count() const
Age(uint16_t count, Unit unit)
bool operator!=(const Age &other) const
Definition: age.h:6
Unit
Definition: age.h:9
std::string str() const