1 Star 0 Fork 5

ecampuscn/call_demo_server

forked from 张远浩/call_demo_server 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ConfigFileReader.h 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
* ConfigFileReader.h
*
* Created on: 2013-7-2
* Author: ziteng@mogujie.com
*/
#ifndef CONFIGFILEREADER_H_
#define CONFIGFILEREADER_H_
#include "util.h"
#include <map>
class CConfigFileReader
{
public:
CConfigFileReader(const char* filename);
~CConfigFileReader();
char* GetConfigName(const char* name);
int SetConfigValue(const char* name, const char* value);
private:
void _LoadFile(const char* filename);
int _WriteFIle(const char*filename = NULL);
void _ParseLine(char* line);
char* _TrimSpace(char* name);
bool m_load_ok;
map<string, string> m_config_map;
string m_config_file;
};
#endif /* CONFIGFILEREADER_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ecampuscn/call_demo_server.git
git@gitee.com:ecampuscn/call_demo_server.git
ecampuscn
call_demo_server
call_demo_server
master

搜索帮助