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

Class Base

Examples/NoModules/Chapter 17/Ex17_06/Ex17_06.cpp:7–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6template <typename T>
7class Base
8{
9public:
10 void baseFun() { /* ... */ }
11protected:
12 int m_base_var {};
13};
14
15template <typename T>
16class Derived : public Base<T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected