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.
24 lines
429 B
C++
24 lines
429 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();
|
|
|
|
QMap<QString, QString> m_CamKeySolution;
|
|
QMap<QString, QString> m_curRunModel;
|
|
};
|
|
|
|
#endif
|