pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/worldobjs ConveyorBelt.cc,1.31,1.32 I


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/worldobjs ConveyorBelt.cc,1.31,1.32 IceBlock.cc,1.24,1.25 IceBlock.hh,1.19,1.20 InfoBox.cc,1.4,1.5 InfoBox.hh,1.3,1.4 SwitchDoor.cc,1.26,1.27 SwitchDoor.hh,1.20,1.21 Teleporter.cc,1.34,1.35 Teleporter.hh,1.26,1.27
Date: 8 Jun 2002 20:19:58 -0000

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

Modified Files:
        ConveyorBelt.cc IceBlock.cc IceBlock.hh InfoBox.cc InfoBox.hh 
        SwitchDoor.cc SwitchDoor.hh Teleporter.cc Teleporter.hh 
Log Message:
reduced header dependencies


Index: ConveyorBelt.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/ConveyorBelt.cc,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- ConveyorBelt.cc     7 Jun 2002 14:50:35 -0000       1.31
+++ ConveyorBelt.cc     8 Jun 2002 20:19:55 -0000       1.32
@@ -23,6 +23,7 @@
 #include "../PinguHolder.hh"
 #include "../PingusResource.hh"
 #include "../XMLhelper.hh"
+#include "../Position.hh"
 #include "ConveyorBelt.hh"
 #include "../GroundpieceData.hh"
 

Index: IceBlock.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/IceBlock.cc,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- IceBlock.cc 1 Jun 2002 18:05:37 -0000       1.24
+++ IceBlock.cc 8 Jun 2002 20:19:55 -0000       1.25
@@ -25,6 +25,7 @@
 #include "../GroundpieceData.hh"
 #include "../PinguMap.hh"
 #include "../GameTime.hh"
+#include "../Position.hh"
 #include "IceBlock.hh"
 
 IceBlockData::IceBlockData ()

Index: IceBlock.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/IceBlock.hh,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- IceBlock.hh 7 Jun 2002 20:35:14 -0000       1.19
+++ IceBlock.hh 8 Jun 2002 20:19:55 -0000       1.20
@@ -20,18 +20,13 @@
 #ifndef ICEBLOCK_HH
 #define ICEBLOCK_HH
 
+#include <iosfwd>
 #include <ClanLib/core.h>
 
 #include "../WorldObjData.hh"
 #include "../editor/SpriteEditorObj.hh"
 
 class WorldObj;
-
-namespace std {
-  template <class T> class char_traits;
-  template <class T1, class T2> struct basic_ofstream;
-  typedef struct basic_ofstream<char, char_traits<char> > ofstream;
-}
 
 namespace boost {
   template <class T> class shared_ptr;

Index: InfoBox.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/InfoBox.cc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- InfoBox.cc  1 Jun 2002 18:05:37 -0000       1.4
+++ InfoBox.cc  8 Jun 2002 20:19:55 -0000       1.5
@@ -20,6 +20,8 @@
 #include "../PinguHolder.hh"
 #include "../World.hh"
 #include "../PingusResource.hh"
+#include "../XMLhelper.hh"
+#include "../Position.hh"
 #include "InfoBox.hh"
 
 InfoBoxData::InfoBoxData ()

Index: InfoBox.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/InfoBox.hh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- InfoBox.hh  4 Dec 2001 12:18:50 -0000       1.3
+++ InfoBox.hh  8 Jun 2002 20:19:55 -0000       1.4
@@ -25,6 +25,9 @@
 #include "../WorldObjData.hh"
 #include "../editor/SpriteEditorObj.hh"
 
+class _xmlDoc;  typedef _xmlDoc*  xmlDocPtr;
+class _xmlNode; typedef _xmlNode* xmlNodePtr;
+
 class InfoBoxData : public WorldObjData
 {
 public:

Index: SwitchDoor.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/SwitchDoor.cc,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- SwitchDoor.cc       7 Jun 2002 14:50:35 -0000       1.26
+++ SwitchDoor.cc       8 Jun 2002 20:19:55 -0000       1.27
@@ -23,6 +23,8 @@
 #include "../PingusResource.hh"
 #include "../editor/EditorView.hh"
 #include "../GroundpieceData.hh"
+#include "../XMLhelper.hh"
+#include "../Position.hh"
 #include "SwitchDoor.hh"
 
 SwitchDoorData::SwitchDoorData ()

Index: SwitchDoor.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/SwitchDoor.hh,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- SwitchDoor.hh       7 Jun 2002 14:50:35 -0000       1.20
+++ SwitchDoor.hh       8 Jun 2002 20:19:55 -0000       1.21
@@ -26,6 +26,9 @@
 #include "../WorldObjData.hh"
 #include "../editor/SpriteEditorObj.hh"
 
+class _xmlDoc;  typedef _xmlDoc*  xmlDocPtr;
+class _xmlNode; typedef _xmlNode* xmlNodePtr;
+
 /** A variable height door which can block the way and which can be
     opened by a switch */
 class SwitchDoorData : public WorldObjData

Index: Teleporter.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/Teleporter.cc,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- Teleporter.cc       7 Jun 2002 14:50:35 -0000       1.34
+++ Teleporter.cc       8 Jun 2002 20:19:55 -0000       1.35
@@ -22,6 +22,7 @@
 #include "../PinguHolder.hh"
 #include "../XMLhelper.hh"
 #include "../editor/EditorView.hh"
+#include "../Position.hh"
 #include "Teleporter.hh"
 
 TeleporterData::TeleporterData (const TeleporterData& data) : 
WorldObjData(data)

Index: Teleporter.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldobjs/Teleporter.hh,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- Teleporter.hh       7 Jun 2002 14:50:35 -0000       1.26
+++ Teleporter.hh       8 Jun 2002 20:19:55 -0000       1.27
@@ -20,15 +20,21 @@
 #ifndef TELEPORTER_HH
 #define TELEPORTER_HH
 
-#include <fstream>
+#include <iosfwd>
 
-#include "../boost/smart_ptr.hpp"
 #include "../Sprite.hh"
 #include "../WorldObj.hh"
 #include "../WorldObjData.hh"
 #include "../editor/SpriteEditorObj.hh"
 
 class EditorTeleporterObj;
+class _xmlDoc;  typedef _xmlDoc*  xmlDocPtr;
+class _xmlNode; typedef _xmlNode* xmlNodePtr;
+
+namespace boost {
+
+  template <class T> class shared_ptr;
+}
 
 class TeleporterData : public WorldObjData
 {




reply via email to

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