6 Star 9 Fork 4

依尚/CTP-Future

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ufxconfig.cpp 970 Bytes
一键复制 编辑 原始数据 按行查看 历史
MeGustas 提交于 2017-04-10 16:44 . 1、CTP登录
#include "ufxconfig.h"
UFXConfig::UFXConfig(){
QString IniFilePath="Config.ini";
m_conf = new QSettings(IniFilePath,QSettings::IniFormat);
m_conf->setIniCodec("UTF8");
}
UFXConfig::~UFXConfig(){
delete m_conf;
}
QString UFXConfig::GetString(const char *szSection, const char *szEntry, const char *szValue){
m_mutex.lock();
QString key = QString(szSection) + "/" + QString(szEntry);
QString value = m_conf->value(key,"").toString();
m_mutex.unlock();
return value;
}
void UFXConfig::SetString(const char *szSection, const char *szEntry, const char *szValue){
m_mutex.lock();
QString key = QString(szSection) + "/" + QString(szEntry);
m_conf->setValue(key,QString(szValue));
m_mutex.unlock();
}
UFXConfig* UFXConfig::getInstance(){
return instance;
}
UFXConfig::UFXConfig(const UFXConfig&){
}
UFXConfig& UFXConfig::operator=(const UFXConfig&){
return *instance;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/soso58/CTP-Future.git
[email protected]:soso58/CTP-Future.git
soso58
CTP-Future
CTP-Future
master

搜索帮助