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
611 B
C++
31 lines
611 B
C++
#ifndef _LPGLOBALCONFIG_H_
|
|
#define _LPGLOBALCONFIG_H_
|
|
|
|
#include <QObject>
|
|
#include "lp_singleton_base.h"
|
|
#include <QMap>
|
|
class lpGlobalConfig : public QObject, public lp_singleton_base<lpGlobalConfig>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lpGlobalConfig(QObject *parent = nullptr);
|
|
~lpGlobalConfig();
|
|
|
|
public:
|
|
void readConfig();
|
|
void writeConfig();
|
|
|
|
QString m_StationCamKey_1;//工位相机绑定
|
|
QString m_StationCamKey_2;//工位相机绑定
|
|
QString m_StationSolution_1;//工位solution绑定
|
|
QString m_StationSolution_2;//工位solution绑定
|
|
|
|
QString m_StationRunModel_1;
|
|
QString m_StationRunModel_2;
|
|
|
|
QString m_rootPath;
|
|
};
|
|
|
|
#endif
|