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

Method Integer

Exercises/Modules/Chapter 12/Soln12_03/Integer.cpp:5–8  ·  view source on GitHub ↗

Constructor

Source from the content-addressed store, hash-verified

3
4// Constructor
5Integer::Integer(int value)
6 : m_value{ value }
7{
8}
9
10// Copy constructor
11Integer::Integer(const Integer& obj)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected