]> Dogcows Code - chaz/yoink/blobdiff - src/moof/settings.cc
remove some unused stlplus modules
[chaz/yoink] / src / moof / settings.cc
index 11dfe31b7d9b4478af16a457cb1e42863602e0c0..78f72939d2a58faa9aada73ae7014232e7f5a9a9 100644 (file)
@@ -1,13 +1,11 @@
 
-/*]  Copyright (c) 2009-2010, Charles McGarvey  [**************************
+/*]  Copyright (c) 2009-2011, Charles McGarvey  [*****************************
 **]  All rights reserved.
 *
-* vi:ts=4 sw=4 tw=75
-*
 * Distributable under the terms and conditions of the 2-clause BSD license;
 * see the file COPYING for a complete text of the license.
 *
-**************************************************************************/
+*****************************************************************************/
 
 #include <stlplus/portability/file_system.hpp>
 
@@ -32,7 +30,6 @@ settings::~settings()
        save();
 }
 
-
 void settings::parse_args(int argc, char* argv[])
 {
        for (int i = 1; i < argc; ++i)
@@ -47,12 +44,10 @@ void settings::parse_args(int argc, char* argv[])
        }
 }
 
-
 void settings::load_files(const std::string& path)
 {
        std::vector<std::string> paths;
        boost::split(paths, path, boost::is_any_of(":"));
-
        load_files(paths);
 }
 
@@ -69,11 +64,10 @@ void settings::load_files(const std::vector<std::string>& path)
                        boost::replace_all(*it, "$HOME", home);
 
                        //logDebug("Copying global settings...");
-                       //mUserFile = *it;
+                       //userfile_ = *it;
                        //mGlobals.push_copy();
                        //script_.set("globals", script::registry_index);
                }
-
                if (script_.do_file(*it) != script::success)
                {
                        std::string str;
@@ -84,16 +78,14 @@ void settings::load_files(const std::vector<std::string>& path)
        }
 }
 
-
 void settings::clear()
 {
        script_.reset();
 }
 
-
 void settings::save_as(const std::string& path)
 {
-       mUserFile = path;
+       userfile_ = path;
        save();
 }
 
This page took 0.022903 seconds and 4 git commands to generate.