2014-11-22 22:18:18 +08:00
|
|
|
#ifndef COMPENSATOR_H
|
|
|
|
|
#define COMPENSATOR_H
|
|
|
|
|
#include <QXmlStreamReader>
|
|
|
|
|
#include "BasicElementInfo.h"
|
|
|
|
|
class Compensator:public BasicElementInfo
|
|
|
|
|
{
|
|
|
|
|
public:
|
2014-11-24 22:01:30 +08:00
|
|
|
explicit Compensator(QObject *parent = 0);
|
2014-11-22 22:18:18 +08:00
|
|
|
virtual bool parse(QXmlStreamReader& reader);
|
|
|
|
|
protected:
|
|
|
|
|
virtual bool derivedParse(QXmlStreamReader& reader);
|
|
|
|
|
private:
|
2014-11-24 22:01:30 +08:00
|
|
|
QString terminal;
|
2014-11-22 22:18:18 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // COMPENSATOR_H
|