loader/plugins/command/plugin.cpp

18 lines
243 B
C++

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