16 lines
354 B
C
16 lines
354 B
C
|
|
#ifndef BUSBARSECTION_H
|
||
|
|
#define BUSBARSECTION_H
|
||
|
|
#include <QXmlStreamReader>
|
||
|
|
#include "BasicElementInfo.h"
|
||
|
|
class BusbarSection:public BasicElementInfo
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
BusbarSection();
|
||
|
|
virtual bool parse(QXmlStreamReader& reader);
|
||
|
|
protected:
|
||
|
|
QStringRef terminal;
|
||
|
|
virtual bool derivedParse(QXmlStreamReader& reader);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // BUSBARSECTION_H
|