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
303 B
19 lines
303 B
#ifndef DATAMMODESETTING_H
|
|
#define DATAMMODESETTING_H
|
|
|
|
#include <QMetaType>
|
|
|
|
struct DataMModeSetting_t
|
|
{
|
|
qint32 gain;
|
|
quint32 enhance;
|
|
quint32 reject;
|
|
quint32 dynamicContrast;
|
|
float lineAzimuth;
|
|
bool quality;
|
|
quint32 speed;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(DataMModeSetting_t)
|
|
|
|
#endif //DATAMMODESETTING_H
|
|
|