MCPcopy Create free account
hub / github.com/daniele77/cli / Plugin

Method Plugin

examples/pluginmanager.cpp:59–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57{
58public:
59 explicit Plugin(string _name) : name(std::move(_name)) { cout << "Plugin " << name << " loaded" << endl; }
60 virtual ~Plugin() { cout << "Plugin " << name << " unloaded" << endl; }
61 const string& Name() const { return name; }
62private:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected