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

Method Stack

Examples/NoModules/Chapter 17/Ex17_04B/Stack.h:22–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20{
21public:
22 Stack() = default; // Default constructor
23
24 Stack(const Stack & stack); // Copy constructor
25 Stack& operator=(const Stack & rhs); // Copy assignment operator

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected