back to single level for spaceming all
[feisty_meow.git] / nucleus / library / configuration / system_values.cpp
index c82b515e0ca078e2636149e919c1b281eb3f1250..6461a0fee23953f7dac9735a1fdf068089e840a4 100644 (file)
 #include "ini_configurator.h"
 #include "system_values.h"
 
-#include <algorithms/shell_sort.h>
 #include <structures/int_hash.h>
 #include <structures/string_table.h>
 #include <textual/list_parsing.h>
 #include <textual/parser_bits.h>
+#include "../algorithms/sorts.h"
 
 using namespace algorithms;
 using namespace basis;
@@ -73,7 +73,7 @@ public:
         return curr;
       }
     }
-    return NIL;
+    return NULL_POINTER;
   }
 };
 
@@ -84,7 +84,7 @@ system_values::system_values(const astring &section_tag)
   _list(new system_values_lookup_list),
   _file(new astring(DEFAULT_MANIFEST))
 {
-//  FUNCDEF("constructor");
+  FUNCDEF("constructor");
   open_values();
 }
   
@@ -113,7 +113,7 @@ const char *system_values::EVENT_VALUES() { return "DEFINE_EVENT"; }
 
 bool system_values::open_values()
 {
-//  FUNCDEF("open_values");
+  FUNCDEF("open_values");
   ini_configurator ini(*_file, ini_configurator::RETURN_ONLY,
       ini_configurator::APPLICATION_DIRECTORY);