ESGRAF48/source/SubTests/VerbEnd/VerbEndModel.h

21 lines
377 B
C
Raw Normal View History

2018-05-23 16:43:57 +00:00
#pragma once
2019-02-03 18:53:51 +00:00
#include "PrintableModel.h"
#include "VerbEndModel.pb.h"
2018-05-23 16:43:57 +00:00
2019-02-03 18:53:51 +00:00
class VerbEndModel : public PrintableModel
2018-05-23 16:43:57 +00:00
{
Q_OBJECT
public:
VerbEndModel(QObject *parent);
void write(ESGRAF48::VerbEndModel &model) const;
void read(const ESGRAF48::VerbEndModel &model);
2019-02-05 20:32:13 +00:00
unsigned int getKausalPoints() const;
protected:
void printSummary(QPainter &painter) const override;
2018-05-23 16:43:57 +00:00
};