ServerCore/UDPSocket.h

22 lines
305 B
C++

#ifndef UDPSocket_h__
#define UDPSocket_h__
#include "Socket.h"
namespace core {
class UDPSocket : public Socket {
public:
UDPSocket(EPoll &ePoll);
~UDPSocket();
// virtual int open(string address, short int port);
// virtual void write(istream data);
};
}
#endif