#ifndef IMAGEPRESETVALUES_T_H #define IMAGEPRESETVALUES_T_H #include #include #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