BMA Server Framework
/home/barant/Development/BMA/server_core/ServerCore/BMAUDPSocket.h
1 #ifndef BMAUDPSocket_h__
2 #define BMAUDPSocket_h__
3 
4 #include "BMASocket.h"
5 #include "BMASession.h"
6 
7 class BMAUDPSocket : public BMASocket /*,
8  public BMASession */ {
9 
10  public:
11  BMAUDPSocket(BMAEPoll &ePoll);
12  ~BMAUDPSocket();
13 
14 // virtual int open(string address, short int port);
15 // virtual void write(istream data);
16 
17 
18 
19 
20 
21 };
22 
23 #endif
Definition: BMASocket.h:31
Definition: BMAUDPSocket.h:7
Definition: BMAEPoll.h:29