You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
625 B
C++
31 lines
625 B
C++
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <QColor>
|
|
|
|
extern QString g_SoftwareVersion; //软件版本号
|
|
|
|
/*******************系统颜色***************************************/
|
|
extern QColor g_themeColor;
|
|
extern QString g_PushBtnStyle;
|
|
extern QString g_PushBtnSelStyle;
|
|
extern QString g_ToolBtnStyle;
|
|
extern QString g_ToolBtnSelStyle;
|
|
/*******************系统颜色***************************************/
|
|
|
|
/**
|
|
* @brief calCRC16
|
|
* @param cpu8Data
|
|
* @param u16Len
|
|
* @return
|
|
*/
|
|
extern uint16_t calCRC16(const uint8_t *cpu8Data, uint16_t u16Len);
|
|
|
|
class global
|
|
{
|
|
public:
|
|
global();
|
|
};
|
|
|
|
#endif // GLOBAL_H
|