21 lines
376 B
C
21 lines
376 B
C
|
#pragma once
|
||
|
|
||
|
#include "CheckableTestModel.h"
|
||
|
#include "V2SvkModel.pb.h"
|
||
|
|
||
|
class WFModel : public CheckableTestModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
WFModel(QObject *parent);
|
||
|
|
||
|
unsigned int getV2Points();
|
||
|
unsigned int getSvkPoints();
|
||
|
|
||
|
void write(ESGRAF48::V2SvkModel &model) const;
|
||
|
void read(const ESGRAF48::V2SvkModel &model);
|
||
|
|
||
|
bool isValidIndex(const QModelIndex &index) const;
|
||
|
};
|