// $Header$ #ifndef ALIEVE_CLASS_H #define ALIEVE_CLASS_H #include #include namespace Alieve { 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