vega
include
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
}
vega::Age::unit
Unit unit() const
vega::Age
Definition:
age.h:7
vega::Age::operator==
bool operator==(const Age &other) const
vega::Age::Unit::DAY
vega::Age::count
uint16_t count() const
vega::Age::Unit::WEEK
vega::Age::Age
Age(uint16_t count, Unit unit)
vega::Age::operator!=
bool operator!=(const Age &other) const
vega
Definition:
age.h:6
vega::Age::Unit
Unit
Definition:
age.h:9
vega::Age::Unit::MONTH
vega::Age::Unit::YEAR
vega::Age::str
std::string str() const
Generated by
1.8.13