#ifndef BUSBARSECTION_H #define BUSBARSECTION_H #include #include "BasicElementInfo.h" class BusbarSection:public BasicElementInfo { public: explicit BusbarSection(QObject *parent = 0); virtual bool parse(QXmlStreamReader& reader); QString getEquipmentMemberOf_EquipmentContainer(); QString getTerminal(); protected: QString terminal; virtual bool derivedParse(QXmlStreamReader& reader); QString equipmentMemberOf_EquipmentContainer; }; #endif // BUSBARSECTION_H