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

模拟服务器

开发平台:

C/C++

  1. #include "KException.h"
  2. /*
  3.  * KException
  4.  */
  5. KException::KException( const char*  where, const  char *message )
  6. {
  7. strcpy(m_where ,where);
  8. strcpy(m_message, message);
  9. }
  10. void KException::MessageBox( HWND hWnd /* = NULL */ ) const 
  11.    /*
  12.     * call to unqualified virtual function
  13. */
  14.    ::MessageBox( hWnd, m_message, m_where, MB_ICONSTOP );
  15. }