Files
wlan-cloud-lib-poco/CppUnit/include/CppUnit/Guards.h
Guenter Obiltschnig 727688af3e set eol-style to native
2006-10-23 15:42:49 +00:00

20 lines
372 B
C

//
// Guards.h
//
// $Id: //poco/1.2/CppUnit/include/CppUnit/Guards.h#1 $
//
#ifndef CppUnit_Guards_INCLUDED
#define 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 // CppUnit_Guards_INCLUDED