Message.h
上传用户:sanxfzhen
上传日期:2014-12-28
资源大小:2324k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // Message.h: interface for the CMessage class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MESSAGE_H__D829B8E8_BDA2_40FC_8272_6DD9EF78A38B__INCLUDED_)
  5. #define AFX_MESSAGE_H__D829B8E8_BDA2_40FC_8272_6DD9EF78A38B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMessage  
  10. {
  11. public:
  12. CMessage();
  13. virtual ~CMessage();
  14. public:
  15. static void ClearInfo();
  16. static void SetOutputWnd(CWnd *);
  17. static void SetStatusWnd(CWnd *);
  18. static void PrintInfo(CString);
  19. static void PrintError(CString);
  20. static void PrintStatusInfo(CString);
  21. private:
  22. static CWnd *m_pWndInfo;
  23. static CWnd *m_pWndStatusInfo;
  24. };
  25. #endif // !defined(AFX_MESSAGE_H__D829B8E8_BDA2_40FC_8272_6DD9EF78A38B__INCLUDED_)