#ifndef _roo_h #define _roo_h #ifndef _rooCommon_h #include "rooCommon.h" #endif #include #include class rooException; //////////////////////////////////////////////////////////////////////////////// class roo : public TObject { protected: void* fImp; // objy implementation public: void setImp(void* imp) { fImp=imp; } void* getImp() const { return fImp; } roo(void* imp=0) { setImp(imp); } virtual ~roo() {} // to be implemented void throwException( rooException* e ) {} // *SIGNAL* static Bool_t setHandler(const TString& handler) {} static Bool_t unsetHandler(const TString& handler="") {} ClassDef(roo,0) // base class for rooObjy wrappers }; #endif // _roo_h