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