19 lines
244 B
C++
19 lines
244 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "interface.hpp"
|
|
|
|
namespace loader {
|
|
|
|
class Command : public Interface {
|
|
public:
|
|
const std::string name() const;
|
|
~Command();
|
|
};
|
|
|
|
extern "C" BOOST_SYMBOL_EXPORT Command plugin;
|
|
Command plugin;
|
|
|
|
}
|