ESGRAF48/source/SubTests/Plural/PluralModel.h

19 lines
329 B
C
Raw Normal View History

2018-06-04 16:48:58 +00:00
#pragma once
2019-02-03 18:53:51 +00:00
#include "PrintableModel.h"
2018-11-18 16:40:07 +00:00
#include "PluralModel.pb.h"
2018-06-04 16:48:58 +00:00
2019-02-03 18:53:51 +00:00
class PluralModel : public PrintableModel
2018-06-04 16:48:58 +00:00
{
Q_OBJECT
public:
PluralModel(QObject *parent);
2018-08-26 12:24:05 +00:00
2018-11-18 16:40:07 +00:00
void read(const ESGRAF48::PluralModel &model);
void write(ESGRAF48::PluralModel &model) const;
2019-02-07 19:03:22 +00:00
protected:
virtual void printTests(QPainter &painter) const;
2018-06-04 16:48:58 +00:00
};