cimforreduceloss/testHasttable/disconnector.h

20 lines
442 B
C++

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