[Scummvm-cvs-logs] SF.net SVN: scummvm: [30736] scummvm/trunk

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sat Feb 2 12:52:05 CET 2008


Revision: 30736
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30736&view=rev
Author:   fingolfin
Date:     2008-02-02 03:52:04 -0800 (Sat, 02 Feb 2008)

Log Message:
-----------
Moved AdvancedMetaEngine to namespace Common

Modified Paths:
--------------
    scummvm/trunk/common/advancedDetector.h
    scummvm/trunk/engines/agi/detection.cpp
    scummvm/trunk/engines/agos/detection.cpp
    scummvm/trunk/engines/cine/detection.cpp
    scummvm/trunk/engines/cruise/detection.cpp
    scummvm/trunk/engines/drascula/detection.cpp
    scummvm/trunk/engines/gob/detection.cpp
    scummvm/trunk/engines/igor/detection.cpp
    scummvm/trunk/engines/kyra/detection.cpp
    scummvm/trunk/engines/lure/detection.cpp
    scummvm/trunk/engines/parallaction/detection.cpp
    scummvm/trunk/engines/saga/detection.cpp
    scummvm/trunk/engines/touche/detection.cpp

Modified: scummvm/trunk/common/advancedDetector.h
===================================================================
--- scummvm/trunk/common/advancedDetector.h	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/common/advancedDetector.h	2008-02-02 11:52:04 UTC (rev 30736)
@@ -272,8 +272,6 @@
 	} \
 	void dummyFuncToAllowTrailingSemicolon()
 
-}	// End of namespace Common
-
 /**
  * A MetaEngine implementation based around the advanced detector code.
  */
@@ -311,4 +309,6 @@
 	}
 };
 
+}	// End of namespace Common
+
 #endif

Modified: scummvm/trunk/engines/agi/detection.cpp
===================================================================
--- scummvm/trunk/engines/agi/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/agi/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -2250,9 +2250,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class AgiMetaEngine : public AdvancedMetaEngine {
+class AgiMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	AgiMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	AgiMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "AGI preAGI + v2 + v3 Engine";

Modified: scummvm/trunk/engines/agos/detection.cpp
===================================================================
--- scummvm/trunk/engines/agos/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/agos/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -99,9 +99,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class AgosMetaEngine : public AdvancedMetaEngine {
+class AgosMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	AgosMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	AgosMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "AGOS";

Modified: scummvm/trunk/engines/cine/detection.cpp
===================================================================
--- scummvm/trunk/engines/cine/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/cine/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -488,9 +488,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class CineMetaEngine : public AdvancedMetaEngine {
+class CineMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	CineMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	CineMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Cinematique evo 1 engine";

Modified: scummvm/trunk/engines/cruise/detection.cpp
===================================================================
--- scummvm/trunk/engines/cruise/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/cruise/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -123,9 +123,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class CruiseMetaEngine : public AdvancedMetaEngine {
+class CruiseMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	CruiseMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	CruiseMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Cinematique evo 2 engine";

Modified: scummvm/trunk/engines/drascula/detection.cpp
===================================================================
--- scummvm/trunk/engines/drascula/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/drascula/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -163,9 +163,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class DrasculaMetaEngine : public AdvancedMetaEngine {
+class DrasculaMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	DrasculaMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	DrasculaMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Drascula Engine";

Modified: scummvm/trunk/engines/gob/detection.cpp
===================================================================
--- scummvm/trunk/engines/gob/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/gob/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -1742,9 +1742,9 @@
 	kADFlagAugmentPreferredTarget
 };
 
-class GobMetaEngine : public AdvancedMetaEngine {
+class GobMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	GobMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	GobMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Gob Engine";

Modified: scummvm/trunk/engines/igor/detection.cpp
===================================================================
--- scummvm/trunk/engines/igor/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/igor/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -105,9 +105,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class IgorMetaEngine : public AdvancedMetaEngine {
+class IgorMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	IgorMetaEngine() : AdvancedMetaEngine(igorDetectionParams) {}
+	IgorMetaEngine() : Common::AdvancedMetaEngine(igorDetectionParams) {}
 
 	virtual const char *getName() const {
 		return "Igor: Objective Uikokahonia";

Modified: scummvm/trunk/engines/kyra/detection.cpp
===================================================================
--- scummvm/trunk/engines/kyra/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/kyra/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -430,9 +430,9 @@
 
 } // End of anonymous namespace
 
-class KyraMetaEngine : public AdvancedMetaEngine {
+class KyraMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	KyraMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	KyraMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Legend of Kyrandia Engine";

Modified: scummvm/trunk/engines/lure/detection.cpp
===================================================================
--- scummvm/trunk/engines/lure/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/lure/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -174,9 +174,9 @@
 	Common::kADFlagAugmentPreferredTarget | Common::kADFlagUseExtraAsHint
 };
 
-class LureMetaEngine : public AdvancedMetaEngine {
+class LureMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	LureMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	LureMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Lure of the Temptress Engine";

Modified: scummvm/trunk/engines/parallaction/detection.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/parallaction/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -184,9 +184,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class ParallactionMetaEngine : public AdvancedMetaEngine {
+class ParallactionMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	ParallactionMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	ParallactionMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Parallaction engine";

Modified: scummvm/trunk/engines/saga/detection.cpp
===================================================================
--- scummvm/trunk/engines/saga/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/saga/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -141,9 +141,9 @@
 	Common::kADFlagAugmentPreferredTarget
 };
 
-class SagaMetaEngine : public AdvancedMetaEngine {
+class SagaMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	SagaMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	SagaMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Saga engine";

Modified: scummvm/trunk/engines/touche/detection.cpp
===================================================================
--- scummvm/trunk/engines/touche/detection.cpp	2008-02-02 11:19:54 UTC (rev 30735)
+++ scummvm/trunk/engines/touche/detection.cpp	2008-02-02 11:52:04 UTC (rev 30736)
@@ -124,9 +124,9 @@
 	Common::kADFlagAugmentPreferredTarget | Common::kADFlagPrintWarningOnFileBasedFallback
 };
 
-class ToucheMetaEngine : public AdvancedMetaEngine {
+class ToucheMetaEngine : public Common::AdvancedMetaEngine {
 public:
-	ToucheMetaEngine() : AdvancedMetaEngine(detectionParams) {}
+	ToucheMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
 		return "Touche Engine";


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list