osgEarth-Config的简单用法
在osgEarth中可以通过以下的方式对配置项进行添加和读取
osgEarth::Config config;
config.add("key1_string", "value1");
config.add("key2_int", 2);
config.add("key3_bool", true);
for (osgEarth::ConfigSet::const_iterator j = config.children().begin(); j != config.children().end(); j++)
{
qDebug() << "key=" << (*j).key().c_str() << ": value=" << (*j).value().c_str() << endl;
}
结果如下: