UserListDlg.h
上传用户:hysujiao87
上传日期:2007-12-02
资源大小:156k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

C/C++

  1. #if !defined(AFX_USERLISTDLG_H__5D62B781_8E65_11D6_9C0E_0080C8F72DA3__INCLUDED_)
  2. #define AFX_USERLISTDLG_H__5D62B781_8E65_11D6_9C0E_0080C8F72DA3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // UserListDlg.h : header file
  7. //
  8. #include "UserList.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CUserListDlg dialog
  11. class CUserListDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CUserListDlg(CWnd* pParent = NULL);   // standard constructor
  16. void setUserList(CUserList *list){
  17. _userList = list;
  18. }
  19. // Dialog Data
  20. //{{AFX_DATA(CUserListDlg)
  21. enum { IDD = IDD_USERLIST };
  22. CListCtrl _lcUserList;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CUserListDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. CUserList *_userList;
  33. // Generated message map functions
  34. //{{AFX_MSG(CUserListDlg)
  35. virtual BOOL OnInitDialog();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_USERLISTDLG_H__5D62B781_8E65_11D6_9C0E_0080C8F72DA3__INCLUDED_)