cimforreduceloss/testHasttable/busbarsection.h

19 lines
511 B
C
Raw Permalink Normal View History

#ifndef BUSBARSECTION_H
#define BUSBARSECTION_H
#include <QXmlStreamReader>
#include "BasicElementInfo.h"
class BusbarSection:public BasicElementInfo
{
public:
explicit BusbarSection(QObject *parent = 0);
virtual bool parse(QXmlStreamReader& reader);
QString getEquipmentMemberOf_EquipmentContainer();
QString getTerminal();
protected:
QString terminal;
virtual bool derivedParse(QXmlStreamReader& reader);
QString equipmentMemberOf_EquipmentContainer;
};
#endif // BUSBARSECTION_H