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

Class Base

10-Embedding/mymodule.hpp:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected