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
269 B
22 lines
269 B
4 years ago
|
#ifndef DATAIMAGE_H
|
||
|
#define DATAIMAGE_H
|
||
|
|
||
|
#include <QMetaType>
|
||
|
|
||
|
typedef struct DataImage_t
|
||
|
{
|
||
|
int sonoBNumber;
|
||
|
|
||
|
int sonoBImageW;
|
||
|
int sonoBImageH;
|
||
|
|
||
|
int sonoMImageW;
|
||
|
int sonoMImageH;
|
||
|
|
||
|
bool sriB;
|
||
|
} DataImage_t;
|
||
|
|
||
|
Q_DECLARE_METATYPE(DataImage_t);
|
||
|
|
||
|
#endif //DATAIMAGE_H
|