2014-12-11 19:57:55 +08:00
|
|
|
#ifndef SUBSTATION_H
|
|
|
|
|
#define SUBSTATION_H
|
|
|
|
|
#include <QXmlStreamReader>
|
|
|
|
|
#include "BasicElementInfo.h"
|
|
|
|
|
class Substation:public BasicElementInfo
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit Substation(QObject *parent = 0);
|
|
|
|
|
virtual bool parse(QXmlStreamReader& reader);
|
2014-12-25 16:21:20 +08:00
|
|
|
QString getNamingDescription();
|
2014-12-25 11:44:46 +08:00
|
|
|
QString getSubstationMemberOf_Feeder();
|
2014-12-11 19:57:55 +08:00
|
|
|
protected:
|
|
|
|
|
virtual bool derivedParse(QXmlStreamReader& reader);
|
|
|
|
|
QString namingDescription;
|
|
|
|
|
QString substationMemberOf_Feeder;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // SUBSTATION_H
|