* Construct a new in-memory group of an Ini file. * @param parent the file we belong to * @param name the name of the group */
| 39 | * @param name the name of the group |
| 40 | */ |
| 41 | IniGroup::IniGroup(std::string_view name, IniGroupType type) : type(type), comment("\n") |
| 42 | { |
| 43 | this->name = StrMakeValid(name); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Get the item with the given name. |
nothing calls this directly
no test coverage detected