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.
19 lines
280 B
19 lines
280 B
4 years ago
|
#ifndef TGCPRESETVALUES_T_H
|
||
|
#define TGCPRESETVALUES_T_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QMetaType>
|
||
|
|
||
|
#include "model/ssm/dtoInternal/SsmPresetValues.h"
|
||
|
|
||
|
struct TgcPresetValues_t {
|
||
|
int tgc;
|
||
|
|
||
|
void init(SsmPresetValues_t temp)
|
||
|
{
|
||
|
tgc = temp.tgc;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif //TGCPRESETVALUES_T_H
|