cimforreduceloss/testHasttable/busbarsection.h

16 lines
379 B
C++

#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);
protected:
QString terminal;
virtual bool derivedParse(QXmlStreamReader& reader);
};
#endif // BUSBARSECTION_H