diff options
Diffstat (limited to 'base/options.h')
-rw-r--r-- | base/options.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/base/options.h b/base/options.h index 93f3668137..a48303083c 100644 --- a/base/options.h +++ b/base/options.h @@ -21,18 +21,18 @@ * */ -#ifndef BASE_GAMEDETECTOR_H -#define BASE_GAMEDETECTOR_H +#ifndef BASE_OPTIONS_H +#define BASE_OPTIONS_H #include "common/str.h" #include "common/config-manager.h" -#include "base/game.h" - -class GameDetector { -public: - static void registerDefaults(); - static Common::String parseCommandLine(Common::StringMap &settings, int argc, char **argv); - static void processSettings(Common::String &target, Common::StringMap &settings); -}; + +namespace Base { + +void registerDefaults(); +Common::String parseCommandLine(Common::StringMap &settings, int argc, char **argv); +void processSettings(Common::String &target, Common::StringMap &settings); + +} // End of namespace Base #endif |