#ifndef __THELLO__ #define __THELLO__ #if !defined(__CINT__) || defined(__MAKECINT__) #include #include "TObject.h" #endif using namespace std; class THello : public TObject { public: THello(){ cout << "Hello Root" << endl; } ~THello(){ cout << "Bye Root" << endl;} private: ClassDef(THello, 1) }; #endif