MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / Integer

Method Integer

Examples/NoModules/Chapter 13/Ex13_07/Integer.h:7–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5{
6public:
7 Integer(int value = 0) : m_value{value} {}
8 int getValue() const { return m_value; }
9 void setValue(int value) { m_value = value; }
10private:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected