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

模拟服务器

开发平台:

C/C++

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