arabica/examples/SAX2DOM/CppUnit/framework/Guards.h

13 lines
270 B
C
Raw Normal View History

2002-06-21 13:16:28 +02:00
#ifndef CPPUNIT_GUARDS_H
#define CPPUNIT_GUARDS_H
// Prevent copy construction and assignment for a class
#define REFERENCEOBJECT(className) \
private: \
className (const className& other); \
className& operator= (const className& other);
#endif