UdpSocket.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //  
  3. //  FileName    :   UdpSocket.h
  4. //  Version     :   1.0
  5. //  Creater     :   Linsuyi
  6. //  Date        :   2002-01-16  20:13:26
  7. //  Comment     :   Tcp/ip udp socket header file
  8. //  
  9. ////////////////////////////////////////////////////////////////////////////////
  10. #if !defined(AFX_UDPSOCKET_H__4AA72D6F_0192_4145_ACE6_466897B7F815__INCLUDED_)
  11. #define AFX_UDPSOCKET_H__4AA72D6F_0192_4145_ACE6_466897B7F815__INCLUDED_
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15. #include "DgmSocket.h"
  16. class CUdpSocket
  17.   : public CDgmSocket
  18. {
  19. public:
  20.     CUdpSocket();
  21.     virtual ~CUdpSocket();
  22.     
  23. public:
  24.     virtual int Create();
  25. };
  26. #endif // !defined(AFX_UDPSOCKET_H__4AA72D6F_0192_4145_ACE6_466897B7F815__INCLUDED_)