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