You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
547 B
C++
22 lines
547 B
C++
#ifndef COMMANDSERVER_COMMAND_HPP
|
|
#define COMMANDSERVER_COMMAND_HPP
|
|
|
|
#include <boost/function.hpp>
|
|
|
|
namespace OMW
|
|
{
|
|
///
|
|
/// A Command is currently defined as a string input that, when processed,
|
|
/// will generate a string output. The string output is passed to the
|
|
/// mReplyFunction as soon as the command has been processed.
|
|
///
|
|
class Command
|
|
{
|
|
public:
|
|
std::string mCommand;
|
|
boost::function1<void, std::string> mReplyFunction;
|
|
};
|
|
}
|
|
|
|
#endif //COMMANDSERVER_COMMAND_HPP
|