FrancisANDRE ce641c216a Move include/CppUnit to include/Poco/CppUnit
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
2016-01-06 13:48:48 +01:00

20 lines
387 B
C

//
// Guards.h
//
// $Id: //poco/1.4/CppUnit/include/CppUnit/Guards.h#1 $
//
#ifndef Poco_CppUnit_Guards_INCLUDED
#define Poco_CppUnit_Guards_INCLUDED
// Prevent copy construction and assignment for a class
#define REFERENCEOBJECT(className) \
private: \
className(const className& other); \
className& operator = (const className& other);
#endif // Poco_CppUnit_Guards_INCLUDED