30 lines
604 B
C
30 lines
604 B
C
|
#ifndef APPPROTO_H
|
||
|
#define APPPROTO_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class AppProto : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
AppProto(QObject *parent = nullptr);
|
||
|
~AppProto();
|
||
|
|
||
|
void init();
|
||
|
|
||
|
public:
|
||
|
int itemCount = 0;
|
||
|
int itemCount_balance = 0;
|
||
|
int itemCount_DIDO = 0;
|
||
|
int itemCount_SOX = 0;
|
||
|
int itemCount_other = 0;
|
||
|
int itemCount_alert_value = 0;
|
||
|
int itemCount_alert_delay = 0;
|
||
|
int itemCount_alert_release_value = 0;
|
||
|
int itemCount_alert_release_delay = 0;
|
||
|
int itemCount_alert_dropcurr_rate = 0;
|
||
|
int itemCount_alert_solve_measure = 0;
|
||
|
};
|
||
|
|
||
|
#endif // APPPROTO_H
|