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

Method Integer

Exercises/Modules/Chapter 12/Soln12_01/Integer.cpp:4–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import <iostream>;
3
4Integer::Integer(int value) : m_value{value}
5{
6 std::cout << "Object created." << std::endl;
7}
8
9void Integer::show() const
10{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected