BMA Server Framework
/home/barant/Development/BMA/server_core/ServerCore/BMACommand.h
1 #ifndef BMACommand_h__
2 #define BMACommand_h__
3 
4 #include "includes"
5 #include "BMAObject.h"
6 class BMASession;
7 
8 class BMACommand : public BMAObject {
9 
10  public:
11  BMACommand(std::string commandName);
12  ~BMACommand();
13 
14  std::string commandName;
15 
16  virtual void processCommand(std::string command, BMASession *session) = 0;
17  virtual void output(BMASession *session);
18 
19 };
20 
21 #endif
Definition: BMACommand.h:8
Definition: BMASession.h:18
Definition: BMAObject.h:6