#ifndef _rooScope_h #define _rooScope_h #ifndef _rooCommon_h #include "rooCommon.h" #endif // // ROOT wrappers around ActiveSchema classes ( see ooas.h ) // //////////////////////////////////////////////////////////////////////////////// class rooScope { public: rooScope() {} virtual ~rooScope() {} virtual const rooMetaObject & resolve(const TString&, Int_t ver = kooLatestVersion) =0; virtual rooMetaObjectItr defines_begin() =0; virtual rooMetaObjectItr defines_end() =0; ClassDef(rooScope,0) // corresponds to d_Scope (ABC) }; #endif // _rooScope_h