ESGRAF48/source/SubTests/LateSkills/GenitivModel.h

21 lines
468 B
C
Raw Permalink Normal View History

2018-06-26 14:59:51 +00:00
#pragma once
2019-02-07 21:36:39 +00:00
#include "LateSkillsModel.h"
#include "LateSkillsGenitivModel.pb.h"
2018-06-26 14:59:51 +00:00
2019-02-07 21:36:39 +00:00
class GenitivModel : public LateSkillsModel
2018-06-26 14:59:51 +00:00
{
Q_OBJECT
public:
GenitivModel(QObject *parent);
bool setData(const QModelIndex &index, const QVariant &value,
int role = Qt::EditRole) override;
void read(const ESGRAF48::LateSkillsGenitivModel &model);
void write(ESGRAF48::LateSkillsGenitivModel &model) const;
2019-02-07 21:36:39 +00:00
protected:
void printHeader(QPainter &painter) const override;
2018-06-26 14:59:51 +00:00
};