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.
29 lines
469 B
29 lines
469 B
4 years ago
|
#ifndef IMAGEPRESETVALUES_T_H
|
||
|
#define IMAGEPRESETVALUES_T_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QMetaType>
|
||
|
|
||
|
#include "model/ssm/dtoInternal/SsmPresetValues.h"
|
||
|
|
||
|
struct ImagePresetValues_t {
|
||
|
bool xl;
|
||
|
bool mirrorLR;
|
||
|
bool mirrorUD;
|
||
|
bool twoDSri;
|
||
|
int x;
|
||
|
int y;
|
||
|
|
||
|
void init(SsmPresetValues_t temp)
|
||
|
{
|
||
|
xl = temp.xl;
|
||
|
mirrorLR = temp.mirrorLR;
|
||
|
mirrorUD = temp.mirrorUD;
|
||
|
twoDSri = temp.twoDSri;
|
||
|
x = temp.imageX;
|
||
|
y = temp.imageY;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif //IMAGEPRESETVALUES_T_H
|