diff --git a/generator/src/INI.cpp b/generator/src/INI.cpp index 63fa492..b6eed4f 100644 --- a/generator/src/INI.cpp +++ b/generator/src/INI.cpp @@ -347,4 +347,7 @@ int INI::getDouble(const std::string &pKey, double &pValue, const std::string &p return *lEnd == 0 ? -1 : 0; } - +int INI::generateINI(const std::string &pDest) const { + std::ostringstream mOutputFile(pDest); + +} diff --git a/generator/src/INI.hpp b/generator/src/INI.hpp index 36922d6..72a4942 100644 --- a/generator/src/INI.hpp +++ b/generator/src/INI.hpp @@ -51,6 +51,8 @@ class INI { int getBoolean(const std::string &pKey, bool &pValue, const std::string &pSection = "default") const; int getDouble(const std::string &pKey, double &pValue, const std::string &pSection = "default") const; + /* Generator */ + int generateINI(const std::string &pDest) const; protected: std::string mFileName; std::fstream mFileStream;