This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/*!
*FileName: lpGlobalData.h
*Author: Pan Yingdong
*Email: bob.pan@hzleaper.com
*Created:2021/2/10 16:17
*Note:
*/
#ifndef _H_LPGLOBALDATA_H_
#define _H_LPGLOBALDATA_H_
#include <QObject>
#include "lpsingleton.h"
class lpGlobalData : public QObject,public lpsingleton<lpGlobalData>
{
Q_OBJECT
public:
lpGlobalData(QObject *parent = nullptr);
~lpGlobalData();
int m_level{ 0 };
QString m_curUser{ "" };
bool m_bCheckLinese{ false };//注册码验证 true 表示已注册,false 表示未注册
bool m_plcConnect{ false };
};
#endif