BMA Server Framework
/home/bradarant/barant/ServerCore/UDPSocket.h
1 #ifndef UDPSocket_h__
2 #define UDPSocket_h__
3 
4 #include "Socket.h"
5 #include "Session.h"
6 
7 namespace core {
8 
9  class UDPSocket : public Socket {
10 
11  public:
12  UDPSocket(EPoll &ePoll);
13  ~UDPSocket();
14 
15 // virtual int open(string address, short int port);
16 // virtual void write(istream data);
17 
18 };
19 
20 }
21 
22 #endif
Definition: EPoll.h:31
Definition: Command.cpp:4
Definition: UDPSocket.h:9
Definition: Socket.h:32