qxLib
state.h
Go to the documentation of this file.
1 /**
2 
3  @file state.h
4  @author Khrapov
5  @date 26.04.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 namespace qx
14 {
15 
16 /**
17 
18  @class state
19  @brief State abstraction class
20  @details State is an entity that can be set to its default value
21  @tparam T - state value type
22  @author Khrapov
23  @date 27.04.2021
24 
25 **/
26 template<class T>
27 class state
28 {
29  friend struct std::hash<state<T>>;
30 
31 public:
33 
34  state() noexcept = default;
35 
36  /**
37  @brief state object constructor
38  @param value - start value
39  **/
40  state(const T& value) noexcept;
41 
42  /**
43  @brief basic_state object constructor
44  @param value - start value
45  @param defaultValue - default value
46  **/
47  state(const T& value, const T& defaultValue) noexcept;
48 
49  state& operator=(const T& value) noexcept;
50 
51  bool operator==(const state&) const noexcept = default;
52  bool operator==(const T& value) const noexcept;
53 
54  T* operator->() noexcept;
55  const T* operator->() const noexcept;
56 
57  T& operator*() noexcept;
58  const T& operator*() const noexcept;
59 
60  /**
61  @brief Reset current state to its default value
62  **/
63  void reset() noexcept;
64 
65  /**
66  @brief Is current state default
67  @retval - true if default
68  **/
69  bool is_default() const noexcept;
70 
71 private:
72  T m_State;
73  T m_DefaultValue;
74 };
75 
76 } // namespace qx
77 
78 #include <qx/state.inl>
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
#define QX_COPYMOVABLE(className)
Define class as default copyable and movable.