#ifndef _rooCollectionType_h #define _rooCollectionType_h #ifndef _rooAttributeType_h #include "rooAttributeType.h" #endif // // ROOT wrappers around ActiveSchema classes ( see ooas.h ) // //////////////////////////////////////////////////////////////////////////////// class rooCollectionType : public rooAttributeType { protected: rooType* fElementType; // element_type() public: rooCollectionType(); rooCollectionType(void* imp) { setImp(imp); } virtual ~rooCollectionType(); virtual Int_t kind() const; virtual const rooType & element_type(); ClassDef(rooCollectionType,0) // corresponds to d_Collection_Type }; #endif // _rooCollectionType_h