ESGRAF48/source/SubTests/V2Svk/TPeModel.h

25 lines
527 B
C
Raw Normal View History

#pragma once
2019-02-03 18:53:51 +00:00
#include "V2SvkModel.h"
#include "V2SvkModel.pb.h"
2019-02-03 18:53:51 +00:00
class TPeModel : public V2SvkModel
{
2019-10-05 14:14:45 +00:00
Q_OBJECT
public:
2019-10-05 14:14:45 +00:00
TPeModel(QObject* parent);
2019-10-05 14:14:45 +00:00
unsigned int getV2Points() const override;
unsigned int getSvkPoints() const override;
2019-10-05 14:14:45 +00:00
void write(ESGRAF48::V2SvkModel& model) const override;
void read(const ESGRAF48::V2SvkModel& model) override;
2019-02-03 18:53:51 +00:00
protected:
2019-10-05 14:14:45 +00:00
void printHeader(QPainter&) const override{};
2019-02-03 18:53:51 +00:00
2019-10-05 14:14:45 +00:00
std::set<int> v2Tests() const override;
std::set<int> svkTests() const override;
};