mINI
mINI copied to clipboard
INI file reader and writer
Hello, at first sight, the constructor of mINI::INIFile only accepts path to a file. Could it be possible to pass in your own stream (like a std::stringstream) or just an...
I kept the original constructors accepting std::string, but created a new class "mINIFilePath" with an explicit std::filesystem::path constructor. It is needed so any existing code is not broken, in case...
As title suggests, adds an overload for INIFile which accepts a stringstream pointer, alongside two functions called `readbuffer` and `writebuffer`. ### Example usage: ``` //reading mINI::INIStructure ini_data; std::stringstream inibuffer; inibuffer
Hi, I am encountering an issue when working with the `mINI::INIStructure` type in a function. Here is the scenario: I read my `.ini` file in `main.cpp` as follows: ```cpp mINI::INIFile...
## 🎯 Issues Fixed - Summary I have successfully fixed all the main issues identified in the code review: ### ✅ 1. Copy Constructor Deprecation Warning Fixed Issue: INIMap class...
This occurred because the INTERFACE include directories were using absolute source paths that are invalid when the target is exported/installed to other systems. ## Solution - Updated `target_include_directories` to use...