#ifndef _rooVArrayBasicType_h #define _rooVArrayBasicType_h #ifndef _rooCollectionType_h #include "rooCollectionType.h" #endif // // ROOT wrappers around ActiveSchema classes ( see ooas.h ) // //////////////////////////////////////////////////////////////////////////////// class rooVArrayBasicType : public rooCollectionType { public: rooVArrayBasicType(); rooVArrayBasicType(void* imp) { setImp(imp); } virtual ~rooVArrayBasicType(); Int_t kind() const { return kooARRAY; } Int_t element_base_type() const; virtual Bool_t is_varray_type() const; virtual Bool_t is_varray_basic_type() const { return kTRUE; } ClassDef(rooVArrayBasicType,0) // corresponds to VArray_Basic_Type }; #endif // _rooVArrayBasicType_h