17 lines
353 B
C
17 lines
353 B
C
|
|
#ifndef COMPENSATOR_H
|
||
|
|
#define COMPENSATOR_H
|
||
|
|
#include <QXmlStreamReader>
|
||
|
|
#include "BasicElementInfo.h"
|
||
|
|
class Compensator:public BasicElementInfo
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Compensator();
|
||
|
|
virtual bool parse(QXmlStreamReader& reader);
|
||
|
|
protected:
|
||
|
|
virtual bool derivedParse(QXmlStreamReader& reader);
|
||
|
|
private:
|
||
|
|
QStringRef terminal;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // COMPENSATOR_H
|