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
339 B
22 lines
339 B
#ifndef DATASIMULATION_H
|
|
#define DATASIMULATION_H
|
|
|
|
#include <QMetaType>
|
|
#include <QObject>
|
|
|
|
typedef struct DataSimulation_t
|
|
{
|
|
int stb;
|
|
int mla;
|
|
|
|
bool rxTesterMode;
|
|
bool simulationTest;
|
|
bool oneshot;
|
|
bool autoIncrement;
|
|
|
|
QString simulationFolder;
|
|
} DataSimulation_t;
|
|
|
|
Q_DECLARE_METATYPE(DataSimulation_t);
|
|
|
|
#endif //DATASIMULATION_H
|
|
|