#ifndef SSMPROBELASTCONFIG_H #define SSMPROBELASTCONFIG_H #include #include #include "model/databaseManager/dto/ProbeProperties/DbmLastConfig.h" struct SsmProbeLastConfig_t { quint32 id; quint32 slot; quint32 presetId; quint32 folderId; void init(DbmDtoLastConfig config) { id = config.Probe_id; presetId = config.Preset_id; folderId = config.Application_id; } }; Q_DECLARE_METATYPE(SsmProbeLastConfig_t); #endif //SSMPROBELASTCONFIG_H