栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

linux下libconfig读取配置文件

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

linux下libconfig读取配置文件

        linux下可以轻松的使用libconfig库读取配置文件,下面举例。使用Qt运行测试:

.pro

ConFIG += c++11 console 
SOURCES += main.cpp 
LIBS += /usr/local/lib/libconfig++.so

测试代码:

#include 
#include 
#include 
using namespace std;

int main(int argc, char** argv)
{
    libconfig::Config cfg;
    cfg.readFile(./para.cfg);

    string videPath = ;
    cfg.lookupValue(DEV_VIDEO, videPath);
    int isShowRet = 0;
    cfg.lookupValue(isShowRet, isShowRet);
    float objTh = .0f;
    cfg.lookupValue(objTh, objTh);

    cout <<  videPath =  << videPath << n
         <<  isShowRet =  << isShowRet << n
         <<  objTh =  << objTh << endl;
    return 0;
}

para.cfg文件:

// step1: video config
DEV_VIDEO = "/dev/video0"
isShowRet = 1;
// step3: detector config
objTh = 0.3;

运行结果:

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/277605.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号