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

Class Base

06-VirtualFunctionsInPython/virtual.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
11void identify(Base *b)
12{

Callers 1

virtual.pyFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected