MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / INI

Method INI

Source/Utils/ini.hpp:125–128  ·  view source on GitHub ↗

Constuctor/Destructor Specify the filename to associate and whether to parse immediately

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected