BMA Server Framework
/home/barant/Development/BMA/server_core/ServerCore/BMAAuthenticate.h
1 #ifndef __BMAAuthenticate_h__
2 #define __BMAAuthenticate_h__
3 
4 #include "includes"
5 #include "BMASession.h"
6 
7 class BMAAuthenticate : public BMAObject {
8 
9  public:
10  BMAAuthenticate(BMASession *session);
11  ~BMAAuthenticate();
12 
13  void onStart();
14  void onDataReceived(char *data, int length);
15  void onEnd();
16 
17 };
18 
19 #endif
Definition: BMASession.h:18
Definition: BMAObject.h:6
Definition: BMAAuthenticate.h:7