cimforreduceloss/testHasttable/compensator.h

17 lines
378 B
C++

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