// $Header$ #ifndef REVE_CLASS_H #define REVE_CLASS_H #include #include namespace Reve { class CLASS { private: CLASS(const CLASS&); // Not implemented CLASS& operator=(const CLASS&); // Not implemented protected: public: CLASS(); virtual ~CLASS() {} ClassDef(CLASS, 1); }; // endclass CLASS } #endif