Helper.h
上传用户:whgydz
上传日期:2007-01-12
资源大小:2259k
文件大小:0k
源码类别:

其他书籍

开发平台:

HTML/CSS

  1. #if !defined(AFX_HELPER_H)
  2. #define AFX_HELPER_H
  3. #define SafeRelease(pInterface) if(pInterface != NULL) {pInterface->Release(); pInterface=NULL;}
  4. #define SafeDelete(pObject) if(pObject != NULL) {delete pObject; pObject=NULL;}
  5. #endif