qxLib
state.inl
Go to the documentation of this file.
1 /**
2 
3  @file state.inl
4  @author Khrapov
5  @date 20.08.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class T>
14 inline state<T>::state(const T& value) noexcept : m_State(value)
15 {
16 }
17 
18 template<class T>
19 inline state<T>::state(const T& value, const T& defaultValue) noexcept : m_State(value)
20  , m_DefaultValue(defaultValue)
21 {
22 }
23 
24 template<class T>
25 inline state<T>& state<T>::operator=(const T& value) noexcept
26 {
27  m_State = value;
28  return *this;
29 }
30 
31 template<class T>
32 inline bool state<T>::operator==(const T& value) const noexcept
33 {
34  return m_State == value;
35 }
36 
37 template<class T>
38 inline T* state<T>::operator->() noexcept
39 {
40  return &m_State;
41 }
42 
43 template<class T>
44 inline const T* state<T>::operator->() const noexcept
45 {
46  return &m_State;
47 }
48 
49 template<class T>
50 inline T& state<T>::operator*() noexcept
51 {
52  return m_State;
53 }
54 
55 template<class T>
56 inline const T& state<T>::operator*() const noexcept
57 {
58  return m_State;
59 }
60 
61 template<class T>
62 inline void state<T>::reset() noexcept
63 {
64  m_State = m_DefaultValue;
65 }
66 
67 template<class T>
68 inline bool state<T>::is_default() const noexcept
69 {
70  return m_State == m_DefaultValue;
71 }
72 
73 } // namespace qx
74 
75 namespace std
76 {
77 
78 template<class T>
79 struct hash<qx::state<T>>
80 {
81  size_t operator()(const qx::state<T>& state) const noexcept
82  {
83  return std::hash<T>()(state.m_State);
84  }
85 };
86 
87 } // namespace std
State abstraction class.
Definition: state.h:28
void reset() noexcept
Reset current state to its default value.
Definition: state.inl:62
bool is_default() const noexcept
Is current state default.
Definition: state.inl:68