ESGRAF48/source/SubTests/VerbEnd/VerbEndModel.h

21 lines
395 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
{
2019-10-05 14:14:45 +00:00
Q_OBJECT
2018-05-23 16:43:57 +00:00
public:
2019-10-05 14:14:45 +00:00
VerbEndModel(QObject* parent);
2019-10-05 14:14:45 +00:00
void write(ESGRAF48::VerbEndModel& model) const;
void read(const ESGRAF48::VerbEndModel& model);
2019-02-05 20:32:13 +00:00
2019-10-05 14:14:45 +00:00
unsigned int getKausalPoints() const;
2019-02-05 20:32:13 +00:00
protected:
2019-10-05 14:14:45 +00:00
void printSummary(QPainter& painter) const override;
2018-05-23 16:43:57 +00:00
};