]> Creatis software - creaImageIO.git/blobdiff - src2/creaImageIOSettings.cpp
*** empty log message ***
[creaImageIO.git] / src2 / creaImageIOSettings.cpp
index 43d879ebba13b7aa377234591313d9cf51f55311..69ec28290af24d922aa56e6d2d010ef74d66b060 100644 (file)
@@ -4,6 +4,10 @@
 #include <iostream>
 #include <fstream>
 
+// Memory tracking allocation
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#endif
 using namespace boost;
 namespace po = boost::program_options;
 
@@ -12,7 +16,7 @@ namespace creaImageIO
     Settings::Settings(const std::string i_path)
     {
         //need to position path in user directory first.
-        m_SettingsFileName = i_path + "\\.gimmick\\app.config";
+        m_SettingsFileName = i_path + "\\.gimmick\\Shared\\gimmick\\app.config";
         //Test if Settings File exist
         if(!boost::filesystem::exists(m_SettingsFileName) )
         {
@@ -79,6 +83,18 @@ namespace creaImageIO
                        }
                }
        }
+
+       ////////////////////////////////////////////////////////////////////////////////////////////////
+    // Update settings in config file                                                             //
+    // @param key : Key to update                                                                 //
+    // @param value: New value to set                                                             //
+       // return : -
+    ///////////////////////////////////////////////////////////////////////////////////////////////
+       void Settings::updateSetting(const std::string& key, const std::string &val)
+       {
+               m_SettingsMap[key.c_str()] = val;
+       }
+
        ////////////////////////////////////////////////////////////////////////////////////////////////
     // add a path to a DB                                                                                    //
     // @param i_path : DB path to add                                                             //
@@ -133,6 +149,6 @@ namespace creaImageIO
                ofs.clear();
                writeSettings(ofs);
                ofs.close();
-       }
-         
-}
\ No newline at end of file
+       }  
+}
+