#include "plugin.hpp" #include #include using std::string; namespace loader { const string Command::name() const { return "command"; } Command::~Command() { std::cout << "destructing command" << std::endl; } }