#ifndef _LPGLOBALCONFIG_H_ #define _LPGLOBALCONFIG_H_ #include #include "lp_singleton_base.h" #include class lpGlobalConfig : public QObject, public lp_singleton_base { 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