kexception.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // KException.h: interface for the KException class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_KEXCEPTION_H__EABC0D47_03E6_44C2_A492_38D2A02530E5__INCLUDED_)
  5. #define AFX_KEXCEPTION_H__EABC0D47_03E6_44C2_A492_38D2A02530E5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "windows.h"
  10. class KException  
  11. {
  12. public:
  13. KException (const char * where, const char *message );
  14. virtual ~KException() {}
  15. void MessageBox( HWND hWnd = NULL ) const; 
  16. char m_where[100];
  17. char m_message[100];
  18. };
  19. #endif // !defined(AFX_KEXCEPTION_H__EABC0D47_03E6_44C2_A492_38D2A02530E5__INCLUDED_)