17 lines
412 B
C++
17 lines
412 B
C++
#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);
|
|
protected:
|
|
virtual bool derivedParse(QXmlStreamReader& reader);
|
|
QString namingDescription;
|
|
QString substationMemberOf_Feeder;
|
|
};
|
|
|
|
#endif // SUBSTATION_H
|