hyperrealm / libconfig

C/C++ library for processing configuration files
https://hyperrealm.github.io/libconfig/
GNU Lesser General Public License v2.1
1.1k stars 359 forks source link

long path name in configuration file is missing #217

Open aotto1968 opened 2 years ago

aotto1968 commented 2 years ago

Hi, I would like to have a new feature.

example OLD:

a = {
 b = {
   c = 1;
 }
}

example NEW:

a.b.c = 1;

For NEW the "a" and "b" is a "group" and only the "c" is a scalar

thanks.