pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/worldmap PingusWorldMap.cc,1.40,1.41


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/worldmap PingusWorldMap.cc,1.40,1.41 PingusWorldMap.hh,1.26,1.27 PingusWorldMapGraph.hh,1.23,1.24 PingusWorldMapNode.cc,1.5,1.6 PingusWorldMapNode.hh,1.4,1.5 PingusWorldMapNodeData.hh,1.4,1.5 PingusWorldMapPingus.cc,1.15,1.16 PingusWorldMapPingus.hh,1.13,1.14 PingusWorldMapStat.cc,1.7,1.8 PingusWorldMapStat.hh,1.6,1.7
Date: 10 Jun 2002 13:03:39 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/worldmap
In directory dark:/tmp/cvs-serv4596/worldmap

Modified Files:
        PingusWorldMap.cc PingusWorldMap.hh PingusWorldMapGraph.hh 
        PingusWorldMapNode.cc PingusWorldMapNode.hh 
        PingusWorldMapNodeData.hh PingusWorldMapPingus.cc 
        PingusWorldMapPingus.hh PingusWorldMapStat.cc 
        PingusWorldMapStat.hh 
Log Message:
reduced header dependencies


Index: PingusWorldMap.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMap.cc,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- PingusWorldMap.cc   10 Jun 2002 11:00:28 -0000      1.40
+++ PingusWorldMap.cc   10 Jun 2002 13:03:35 -0000      1.41
@@ -37,6 +37,7 @@
 #include "../PingusSound.hh"
 #include "../Console.hh"
 #include "PingusWorldMap.hh"
+#include "PingusWorldMapPingus.hh"
 
 using namespace Pingus::WorldMap;
 

Index: PingusWorldMap.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMap.hh,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- PingusWorldMap.hh   10 Jun 2002 11:00:28 -0000      1.26
+++ PingusWorldMap.hh   10 Jun 2002 13:03:35 -0000      1.27
@@ -21,12 +21,12 @@
 #define PINGUSWORLDMAP_HH
 
 #include <string>
-#include "PingusWorldMapPingus.hh"
 #include "PingusWorldMapStat.hh"
 
 class CL_Key;
 class CL_Font;
 class CL_InputDevice;
+class PingusWorldMapPingus;
 
 namespace Pingus
 {

Index: PingusWorldMapGraph.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapGraph.hh,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- PingusWorldMapGraph.hh      8 Jun 2002 23:11:09 -0000       1.23
+++ PingusWorldMapGraph.hh      10 Jun 2002 13:03:36 -0000      1.24
@@ -21,8 +21,11 @@
 #define PINGUSWORLDMAPGRAPH_HH
 
 #include "../ResDescriptor.hh"
-#include "../XMLhelper.hh"
+#include "../boost/smart_ptr.hpp"
 #include "PingusWorldMapNode.hh"
+
+class _xmlDoc;  typedef _xmlDoc*  xmlDocPtr;
+class _xmlNode; typedef _xmlNode* xmlNodePtr;
 
 namespace Pingus
 {

Index: PingusWorldMapNode.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapNode.cc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- PingusWorldMapNode.cc       8 Jun 2002 20:19:55 -0000       1.5
+++ PingusWorldMapNode.cc       10 Jun 2002 13:03:36 -0000      1.6
@@ -27,6 +27,7 @@
 #include "../Console.hh"
 #include "../XMLPLF.hh"
 #include "../PingusError.hh"
+#include "../PingusSound.hh"
 #include "PingusWorldMapNode.hh"
 
 using namespace Pingus::WorldMap;

Index: PingusWorldMapNode.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapNode.hh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- PingusWorldMapNode.hh       10 Jun 2002 11:00:29 -0000      1.4
+++ PingusWorldMapNode.hh       10 Jun 2002 13:03:36 -0000      1.5
@@ -21,11 +21,11 @@
 #define PINGUSWORLDMAPNODE_HH
 
 #include "../Sprite.hh"
-#include "../boost/smart_ptr.hpp"
-#include "../PingusSound.hh"
 #include "../globals.hh"
-#include "../PLF.hh"
 #include "PingusWorldMapNodeData.hh"
+
+class CL_Vector;
+class PLF;
 
 namespace Pingus
 {

Index: PingusWorldMapNodeData.hh
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapNodeData.hh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- PingusWorldMapNodeData.hh   10 Jun 2002 11:00:29 -0000      1.4
+++ PingusWorldMapNodeData.hh   10 Jun 2002 13:03:36 -0000      1.5
@@ -22,6 +22,7 @@
 
 #include <list>
 #include <string>
+#include <ClanLib/Core/Math/cl_vector.h>
 
 class _xmlDoc;  typedef _xmlDoc*  xmlDocPtr;
 class _xmlNode; typedef _xmlNode* xmlNodePtr;

Index: PingusWorldMapPingus.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapPingus.cc,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- PingusWorldMapPingus.cc     6 Jun 2002 09:34:28 -0000       1.15
+++ PingusWorldMapPingus.cc     10 Jun 2002 13:03:36 -0000      1.16
@@ -21,6 +21,7 @@
 
 #include "../PingusResource.hh"
 #include "PingusWorldMapPingus.hh"
+#include "../boost/smart_ptr.hpp"
 
 using namespace Pingus::WorldMap;
 

Index: PingusWorldMapPingus.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapPingus.hh,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- PingusWorldMapPingus.hh     8 Jun 2002 23:11:09 -0000       1.13
+++ PingusWorldMapPingus.hh     10 Jun 2002 13:03:36 -0000      1.14
@@ -23,6 +23,10 @@
 #include <queue>
 #include "PingusWorldMapNode.hh"
 
+namespace boost {
+  template <class T> class shared_ptr;
+}
+
 /** This is the representation of the horde of Pingus which will walk
     on the worldmap */
 class PingusWorldMapPingus

Index: PingusWorldMapStat.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapStat.cc,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- PingusWorldMapStat.cc       10 Jun 2002 11:00:29 -0000      1.7
+++ PingusWorldMapStat.cc       10 Jun 2002 13:03:36 -0000      1.8
@@ -22,6 +22,7 @@
 #include "../System.hh"
 #include "../StringConverter.hh"
 #include "../PingusError.hh"
+#include "../XMLhelper.hh"
 #include "PingusWorldMapStat.hh"
 
 using namespace Pingus::WorldMap;

Index: PingusWorldMapStat.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/PingusWorldMapStat.hh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- PingusWorldMapStat.hh       8 Jun 2002 23:11:09 -0000       1.6
+++ PingusWorldMapStat.hh       10 Jun 2002 13:03:36 -0000      1.7
@@ -20,7 +20,9 @@
 #ifndef PINGUSWORLDMAPSTAT_HH
 #define PINGUSWORLDMAPSTAT_HH
 
+#include <map>
 #include "PingusWorldMapGraph.hh"
+#include "PingusWorldMapStat.hh"
 
 class _xmlDoc;  typedef _xmlDoc*  xmlDocPtr;
 class _xmlNode; typedef _xmlNode* xmlNodePtr;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]