error.cpp
上传用户:tt_chan
上传日期:2009-12-03
资源大小:4523k
文件大小:0k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "error.h"
  3. #include <windows.h>
  4. #include <stdio.h>
  5. CError::CError( char *pMsg )
  6. {
  7. strcpy( m_szMsg, pMsg );
  8. }
  9. CError::~CError()
  10. {
  11. }
  12. const char * CError::GetMsg()
  13. {
  14. return m_szMsg;
  15. }