摘要: boost::property_tree读取解析ini文件#include "stdafx.h" #include #include #include int main() { boost::property_tree::ptree pt; boost::prop... 阅读全文
posted @ 2015-03-31 14:40 廖先生 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: void Decode(char *p){int i=0;while(*(p+i)){ if ((*p=*(p+i)) == '%') { *p=*(p+i+1) >= 'A' ? ((*(p+i+1) & 0XDF) - 'A') + 10 : (*(p+i+1) - '0'); ... 阅读全文
posted @ 2015-03-31 10:51 廖先生 阅读(260) 评论(0) 推荐(0) 编辑