BeardedFish/ini-rw

Make INI keys contain a pointer to their equivalent INI section object instead of a string that just contains the section name.

Closed this issue · 1 comments

At the moment, INI keys keep track of what section they are attached to via a read only std::string object. For better design, they should point to their equivalent IniSection* object.

This has been implemented: 564b8e2