#ifndef _rooRelationshipType_h #define _rooRelationshipType_h #ifndef _rooPropertyType_h #include "rooPropertyType.h" #endif // // ROOT wrappers around ActiveSchema classes ( see ooas.h ) // //////////////////////////////////////////////////////////////////////////////// class rooRelationshipType : public rooPropertyType { protected: rooClass* fOtherClass; // destination class of this relationship type. public: rooRelationshipType(); rooRelationshipType(void* imp) { setImp(imp); } virtual ~rooRelationshipType(); rooClass & other_class(); virtual Bool_t is_relationship_type() const { return kTRUE; } ClassDef(rooRelationshipType,0) // corresponds to Relationship_Type }; #endif // _rooRelationshipType_h