
脚本配置
文章平均质量分 95
脚本配置
寰宇C++
这个作者很懒,什么都没留下…
展开
-
【高分】读写配置文件ini完整可运行版linux c++
头文件 #ifndef PROFILE_H #define PROFILE_H #if !defined(_INC_WINDOWS) #include <stdio.h> // for size_t typedef unsigned char BOOL; #ifndef FALSE #define FALSE 0 #endif #ifndef T...原创 2019-10-20 19:34:22 · 2075 阅读 · 2 评论 -
ini配置脚本,详细实例
CMyINI.cpp #include "CMyINI.h" #include <fstream> #include <stdlib.h> namespace rr { bool RrConfig::IsSpace(char c) { if (' ' == c || '\t' == c) return true; return false; } bool...原创 2019-09-24 10:50:37 · 603 阅读 · 0 评论