19 lines
421 B
C
19 lines
421 B
C
|
|
#ifndef ACLINESEGMENT_H
|
||
|
|
#define ACLINESEGMENT_H
|
||
|
|
#include "BasicElementInfo.h"
|
||
|
|
class ACLineSegment:public BasicElementInfo
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
ACLineSegment();
|
||
|
|
virtual bool parse(QXmlStreamReader &reader);
|
||
|
|
protected:
|
||
|
|
QStringRef terminalA;
|
||
|
|
QStringRef terminalB;
|
||
|
|
QStringRef containsOfSubstation;
|
||
|
|
virtual bool derivedParse(QXmlStreamReader &reader);
|
||
|
|
private:
|
||
|
|
bool isTerminalA;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // ACLINESEGMENT_H
|