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

模拟服务器

开发平台:

C/C++

  1. #ifndef __MYASSERT_H
  2. #define __MYASSERT_H
  3. #include <crtdbg.h> // for _ASSERT
  4. #ifdef _DEBUG
  5. #ifndef ASSERT_VALID
  6. #define ASSERT_VALID(pObj) 
  7. {
  8. _ASSERT (pObj != NULL); 
  9. pObj->AssertValid(); 
  10. }
  11. #endif //#ifndef ASSERT_VALID
  12. #else
  13. #ifndef ASSERT_VALID
  14. #define ASSERT_VALID(exp)
  15. #endif
  16. #endif
  17. #endif //__MYASSERT_H