You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
383 B
22 lines
383 B
4 years ago
|
#ifndef PRESETPRESETPROPERTIES_H
|
||
|
#define PRESETPRESETPROPERTIES_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QMetaType>
|
||
|
|
||
|
#include "model/databaseManager/dto/ProbeProperties/DbmPreset.h"
|
||
|
|
||
|
struct PresetPresetProperties_t {
|
||
|
QString name;
|
||
|
int ID;
|
||
|
int order;
|
||
|
void init(DbmDtoPreset temp)
|
||
|
{
|
||
|
name = temp.showText;
|
||
|
ID = temp.ID;
|
||
|
order = temp.orderNum;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif //PRESETPRESETPROPERTIES_H
|