26 lines
469 B
C++
26 lines
469 B
C++
#pragma once
|
|
|
|
#include "CheckableTestModel.h"
|
|
#include "V2SvkModel.pb.h"
|
|
|
|
#include <QTextCursor>
|
|
|
|
class V2SvkModel : public CheckableTestModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
V2SvkModel(QObject *parent);
|
|
|
|
unsigned int getV2Points();
|
|
unsigned int getSvkPoints();
|
|
|
|
void write(ESGRAF48::V2SvkModel &model) const;
|
|
void read(const ESGRAF48::V2SvkModel &model);
|
|
|
|
void printTo(QTextCursor &cursor) const;
|
|
|
|
protected:
|
|
bool isValidIndex(const QModelIndex &index) const override;
|
|
};
|