cimforreduceloss/testHasttable/breaker.h

20 lines
417 B
C
Raw Normal View History

#ifndef BREAKER_H
#define BREAKER_H
#include <QXmlStreamReader>
#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