Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
3
class Base {
4
public:
5
Base() : mName(
"Base"
) {}
6
Base(const std::string& name) : mName(name) {}
7
virtual ~Base() {}
8
std::string name() const
9
{ return mName; }
10
private:
11
std::string mName;
12
};
13
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected