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
BMACommand
Definition:
BMACommand.h:8
BMASession
Definition:
BMASession.h:18
BMAObject
Definition:
BMAObject.h:6
Generated by
1.8.13