加了Substation的类

Signed-off-by: facat@lab.com <facat@lab.com>
This commit is contained in:
facat@lab.com
2014-12-11 19:57:55 +08:00
parent d6bcb9a0c5
commit 2e46068680
7 changed files with 61 additions and 32 deletions

View File

@@ -0,0 +1,16 @@
#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