UIThread.h
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:1k
源码类别:

中间件编程

开发平台:

Visual C++

  1. #if !defined(AFX_UITHREAD_H__A0E28184_284D_11D6_9C7C_5254AB31B8A3__INCLUDED_)
  2. #define AFX_UITHREAD_H__A0E28184_284D_11D6_9C7C_5254AB31B8A3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // UIThread.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CUIThread thread
  10. class CUIThread : public CWinThread
  11. {
  12. DECLARE_DYNCREATE(CUIThread)
  13. protected:
  14. CUIThread();           // protected constructor used by dynamic creation
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CUIThread)
  22. public:
  23. virtual BOOL InitInstance();
  24. virtual int ExitInstance();
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. virtual ~CUIThread();
  29. // Generated message map functions
  30. //{{AFX_MSG(CUIThread)
  31. afx_msg void OnJmCopy();
  32. afx_msg void OnJmCut();
  33. afx_msg void OnJmExit();
  34. afx_msg void OnJmPaste();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_UITHREAD_H__A0E28184_284D_11D6_9C7C_5254AB31B8A3__INCLUDED_)