aboutsummaryrefslogtreecommitdiff
path: root/base/gameDetector.h
diff options
context:
space:
mode:
authorMax Horn2006-05-04 23:29:56 +0000
committerMax Horn2006-05-04 23:29:56 +0000
commit64d9224b5493c404ea1b6ebb3e9693e5c1f4abfb (patch)
treeb9688c45072e6fce0b81c0bc8c181b6aee457c81 /base/gameDetector.h
parent5d5c02d66c680ef442f68138bae6a403e6bc3336 (diff)
downloadscummvm-rg350-64d9224b5493c404ea1b6ebb3e9693e5c1f4abfb.tar.gz
scummvm-rg350-64d9224b5493c404ea1b6ebb3e9693e5c1f4abfb.tar.bz2
scummvm-rg350-64d9224b5493c404ea1b6ebb3e9693e5c1f4abfb.zip
Renamed base/gameDetector.h/.cpp to base/options.h/.cpp
svn-id: r22347
Diffstat (limited to 'base/gameDetector.h')
-rw-r--r--base/gameDetector.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/base/gameDetector.h b/base/gameDetector.h
deleted file mode 100644
index 93f3668137..0000000000
--- a/base/gameDetector.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2001 Ludvig Strigeus
- * Copyright (C) 2001-2006 The ScummVM project
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $URL$
- * $Id$
- *
- */
-
-#ifndef BASE_GAMEDETECTOR_H
-#define BASE_GAMEDETECTOR_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);
-};
-
-#endif