24 lines
370 B
C
24 lines
370 B
C
#ifndef DATA_CONFIG_H
|
|
#define DATA_CONFIG_H
|
|
#include <QString>
|
|
#include <QPushButton>
|
|
|
|
typedef struct {
|
|
int slot;
|
|
int slot_type;
|
|
QString chan_display;
|
|
QString rack_type;
|
|
QPushButton* slot_btn;
|
|
}SlotConfig;
|
|
|
|
|
|
enum SlotType{
|
|
POWER = 10,
|
|
CONFIG = 20,
|
|
KEYPHASOR = 25,
|
|
RELAY = 30,
|
|
VIBRATE = 40,
|
|
RPM = 50
|
|
};
|
|
#endif // DATA_CONFIG_H
|