ESGRAF48/source/SubTests/LateSkills/GenitivModel.h

21 lines
454 B
C
Raw Permalink Normal View History

2018-06-26 14:59:51 +00:00
#pragma once
#include "LateSkillsModel.h"
#include "LateSkillsGenitivModel.pb.h"
2018-06-26 14:59:51 +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;
2018-12-08 20:02:35 +00:00
protected:
std::string getName() const override;
2018-06-26 14:59:51 +00:00
};