2018-05-23 16:43:57 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-03 18:53:51 +00:00
|
|
|
#include "PrintableModel.h"
|
2018-11-17 14:55:40 +00:00
|
|
|
#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);
|
2018-11-17 14:55:40 +00:00
|
|
|
|
2018-11-20 06:59:12 +00:00
|
|
|
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
|
|
|
};
|