ClientSocket.h
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. #if !defined(AFX_CLIENTSOCKET_H__1B57AF02_85B6_443D_9784_2A76E924622D__INCLUDED_)
  2. #define AFX_CLIENTSOCKET_H__1B57AF02_85B6_443D_9784_2A76E924622D__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ClientSocket.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CClientSocket command target
  10. class CClientSocket : public CSocket
  11. {
  12. // Attributes
  13. public:
  14. // Operations
  15. public:
  16. CClientSocket();
  17. virtual ~CClientSocket();
  18. // Overrides
  19. private:
  20. CString strRoomName;
  21. CString strUserName;
  22. int      iState;
  23. public:
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CClientSocket)
  26. public:
  27. virtual void OnSend(int nErrorCode);
  28. virtual void OnReceive(int nErrorCode);
  29. //}}AFX_VIRTUAL
  30. // Generated message map functions
  31. //{{AFX_MSG(CClientSocket)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //}}AFX_MSG
  34. void SetRoomName(const CString Name)
  35. {
  36. strRoomName = Name;
  37. }
  38. CString GetRoomName()
  39. {
  40. return strRoomName;
  41. }
  42. CString GetUserName()
  43. {
  44. return strUserName;
  45. }
  46. void  SetUserName(const CString UsrName)
  47. {
  48. strUserName = UsrName;
  49. }
  50. void SetState(const int stat)
  51. {
  52. iState = stat;
  53. }
  54. int GetState()
  55. {
  56. return iState;
  57. }
  58. // Implementation
  59. protected:
  60. };
  61. /////////////////////////////////////////////////////////////////////////////
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  64. #endif // !defined(AFX_CLIENTSOCKET_H__1B57AF02_85B6_443D_9784_2A76E924622D__INCLUDED_)