Guards.h #1

  • //
  • guest/
  • paul_krause/
  • CppUnit/
  • test/
  • framework/
  • Guards.h
  • View
  • Commits
  • Open Download .zip Download (270 B)

#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
# Change User Description Committed
#1 788 Paul Krause unit testing framework from CppUnit 1.5