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

模拟服务器

开发平台:

C/C++

  1. #ifndef CPPUNIT_GUARDS_H
  2. #define CPPUNIT_GUARDS_H
  3. // Prevent copy construction and assignment for a class
  4. #define REFERENCEOBJECT(className) 
  5. private: 
  6.                className (const className& other); 
  7.     className& operator= (const className& other); 
  8. #endif