Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / src / config / GlobalVault.cpp
blob71e3301be9c126007bffcd9d222f70c76202c8fd
1 /** Aesalon, a tool to visualize program behaviour in real time.
2 Copyright (C) 2009-2011, Aesalon development team.
4 Aesalon is distributed under the terms of the GNU GPLv3. See
5 the included file LICENSE for more information.
7 @file src/config/GlobalVault.cpp
8 */
10 #include "Config.h"
12 #include "config/GlobalVault.h"
13 #include "config/Parser.h"
14 #include "util/PathSanitizer.h"
16 namespace Config {
18 GlobalVault *GlobalVault::m_instance = NULL;
20 GlobalVault::GlobalVault() {
21 m_instance = this;
22 Config::Parser parser;
24 parser.parse(this, Util::PathSanitizer::sanitize(AesalonGlobalConfig));
25 parser.parse(this, Util::PathSanitizer::sanitize(AesalonUserConfig));
26 parser.parse(this, Util::PathSanitizer::sanitize(AesalonLocalConfig));
29 } // namespace Config