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.
26 lines
368 B
C++
26 lines
368 B
C++
#ifndef _H_LPCORECONFIG_H_
|
|
#define _H_LPCORECONFIG_H_
|
|
|
|
#include "lp_singleton_base.h"
|
|
#include <string>
|
|
#include "baseStruct.h"
|
|
|
|
class lpCoreConfig:public lp_singleton_base<lpCoreConfig>
|
|
{
|
|
public:
|
|
lpCoreConfig() {};
|
|
~lpCoreConfig() {};
|
|
|
|
public:
|
|
void readConfig();
|
|
void writeConfig();
|
|
|
|
public:
|
|
std::string m_MainPath;
|
|
|
|
TP_CORE_SETTING m_CoreSetting;
|
|
};
|
|
|
|
#endif
|
|
|