资源简介
c++读取ini文件封装类,可以直接使用,简单易上手;
代码片段和文件信息
#include “stdafx.h“
#include “ConfigInstance.h“
#include
#include
#include
#include
ConfigInstace::ConfigInstace(const std::string &strPath)
: m_strPath(strPath)
{
}
ConfigInstace::~ConfigInstace()
{
}
std::string ConfigInstace::GetString(const std::string &strSection const std::string &strKey const std::string &strDefault /*= ““*/)
{
char szBuf[255] = { 0 };
GetPrivateProfileStringA(strSection.c_str() strKey.c_str() strDefault.c_str() szBuf 255 m_strPath.c_str());
std::string strRet = szBuf;
return strRet;
}
bool ConfigInstace::SetString(const std::string &strSection const std::string &strKey const std::string &strValue)
{
bool bRet = WritePrivateProfileStringA(strSection.c_str() strKey.c_str() strValue.c_str() m_strPath.c_str());
return bRet;
}
int ConfigInstace::GetInt(const std::string &strSection const std::string &strKey const int nDefault /*= 0*/)
{
return GetPrivateProfileIntA(strSection.c_str() strKey.c_str() nDefault m_strPath.c_str());
}
bool ConfigInstace::SetInt(const std::string &strSection const std::string &strKey const int nValue)
{
std::stringstream inStream;
inStream << nValue;
return SetString(strSection strKey inStream.str());
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1293 2018-10-23 13:48 读取配置项封装类\ConfigInstance.cpp
文件 598 2018-10-23 10:59 读取配置项封装类\ConfigInstance.h
目录 0 2018-10-23 13:48 读取配置项封装类
----------- --------- ---------- ----- ----
1891 3
- 上一篇:图像处理 FFT快速傅里叶变换 C代码
- 下一篇:C++写的多级反馈队列代码
相关资源
- C++写的多级反馈队列代码
- ECC加密 RSA加密 C++ 简单实现 不带大数
- c++实现的录音程序源代码(录mp3、x
- 校园导航系统 c++做的 !
- 值得你看的C++27个趣味程序
- c++学生选课系统代码
- C++五子棋源代码程序解析
- 操作系统课程设计之进程调度源代码
- 《C语言课程设计》 学生成绩管理系统
- c++学生考勤管理系统
- C++病毒开发开发源代码+2小时教学视频
- C++实现内存修改器+1G视频教程百度云
- C++实现开心消消乐游戏源代码+教学视
- C++实现塔防游戏源代码
- qt qml c++ 折线图
- Jumping the Queue C++代码
- 成绩记录簿
-
C++中使用CWebPage调用ja
vasc ript - 学生成绩管理系统c++ csdn
- C++内排序算法比较
- C++编程思想两卷合订本-高清完美带书
- 发送win10消息通知的
- C++ 生成JPEG图片源代码
- MFC对话框标题栏的隐藏和高度设置
- 高校人事管理系统课程设计C++版
- VC++6.0无法打开工程解决办法
- Visual C++项目开发案例全程实录第2版光
- C++实现的仓库管理系统
- 博览网 4视频 侯捷老师的C++内存管理
- C++算法大全及面试题详解
评论
共有 条评论