global.h 649 B

1234567891011121314151617181920
  1. #ifndef GLOBAL_H
  2. #define GLOBAL_H
  3. #include <QString>
  4. #include <QUrl>
  5. #include <QUrlQuery>
  6. #include "logger.h"
  7. extern QUrl apiBackendUrl; // 声明全局变量
  8. extern QString labLat; // 新增的全局变量声明
  9. extern QString labLon; // 新增的全局变量声明
  10. extern QString globalAuthority;
  11. extern QString firewidgetPort; // 点火装置串口号
  12. extern QString gpsPort; // gps串口号
  13. extern QString databaseHost; // pc数据库地址
  14. extern QString mqttClientId; // mqtt客户端ID
  15. extern bool isShowTriggeringWidget; // 是否显示点火装置触发中调试组件
  16. #endif // GLOBAL_H