#ifndef BREAKER_H #define BREAKER_H #include #include "BasicElementInfo.h" class Breaker:public BasicElementInfo { public: Breaker(); virtual bool parse(QXmlStreamReader& reader); protected: QStringRef terminalA; QStringRef terminalB; QStringRef equipmentContainer; virtual bool derivedParse(QXmlStreamReader& reader); private: bool isTerminalA; }; #endif // BREAKER_H