Constuctor/Destructor Specify the filename to associate and whether to parse immediately
| 123 | ///Constuctor/Destructor |
| 124 | //Specify the filename to associate and whether to parse immediately |
| 125 | INI(const std::string filename, bool doParse) : filename(filename) |
| 126 | { |
| 127 | init(SOURCE_FILE, doParse); |
| 128 | } |
| 129 | |
| 130 | //Used for loading INI from memory |
| 131 | INI(void* data, size_t dataSize, bool doParse) : data((data_t*)data), dataSize(dataSize) |
nothing calls this directly
no outgoing calls
no test coverage detected