This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
ESGRAF48/source/SubTests/VerbEnd/VerbEndModel.h

21 lines
395 B
C++

#pragma once
#include "PrintableModel.h"
#include "VerbEndModel.pb.h"
class VerbEndModel : public PrintableModel
{
Q_OBJECT
public:
VerbEndModel(QObject* parent);
void write(ESGRAF48::VerbEndModel& model) const;
void read(const ESGRAF48::VerbEndModel& model);
unsigned int getKausalPoints() const;
protected:
void printSummary(QPainter& painter) const override;
};