Section

Represents a section that can contain settings and other sections

struct Section {
string name;
string id;
Section* parent;
Section[] subsections;
Setting[] settings;
}

Members

Functions

toString
string toString()

Return a human-readable representation of the section, that looks similar to the ini file, but with types and _ instead of . in the section name

Meta