error.h
上传用户:szopptop
上传日期:2013-04-23
资源大小:1047k
文件大小:0k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /*
  2. C++ Exception Processing Class
  3. Date:
  4. 2001/10/09 (Last Updated: 2002/03/06)
  5. */
  6. #ifndef __ORZ_ERROR__
  7. #define __ORZ_ERROR__
  8. #define ERROR_MAXBUF 1024
  9. class CError
  10. {
  11. protected:
  12. char m_szMsg[ERROR_MAXBUF];
  13. public:
  14. CError( char *pMsg );
  15. virtual ~CError();
  16. const char * GetMsg();
  17. };
  18. #endif