MCPcopy Create free account
hub / github.com/TNG/boost-python-examples / Base

Class Base

05-Inheritance/inheritance.cpp:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include <string>
3
4class Base
5{
6public:
7 virtual std::string name() const { return "Base"; }
8 virtual ~Base() {}
9};
10
11class Derived : public Base
12{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected