2018-05-22 03:55:46 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-03 18:53:51 +00:00
|
|
|
#include "PrintableModel.h"
|
2018-11-18 14:27:00 +00:00
|
|
|
#include "GenusModel.pb.h"
|
2018-05-22 18:23:03 +00:00
|
|
|
|
2019-02-03 18:53:51 +00:00
|
|
|
class GenusModel : public PrintableModel
|
2018-05-22 03:55:46 +00:00
|
|
|
{
|
2019-10-05 14:14:45 +00:00
|
|
|
Q_OBJECT
|
2018-05-22 03:55:46 +00:00
|
|
|
|
|
|
|
public:
|
2019-10-05 14:14:45 +00:00
|
|
|
GenusModel(QObject* parent);
|
2018-11-18 14:27:00 +00:00
|
|
|
|
2019-10-05 14:14:45 +00:00
|
|
|
void read(const ESGRAF48::GenusModel& model);
|
|
|
|
void write(ESGRAF48::GenusModel& model) const;
|
2018-05-22 03:55:46 +00:00
|
|
|
};
|