C++配置文件相关

Posted on 2019-12-19 13:48  yacbo  阅读(144)  评论(0编辑  收藏  举报

1.

#ifndef COMMON_H
#define COMMON_H
typedef struct _StructConfig{
    std::string file_name;
}StructConfig;
extern StructConfig sConfig;
#endif
Config configSettings("../config.ini");
sConfig.file_name = configSettings.Read("file_name", sConfig.file_name);
#config.ini文件
file_name=../test.mp4

 

Copyright © 2024 yacbo
Powered by .NET 8.0 on Kubernetes