pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src LayerManager.hh,1.7,1.8 Theme.hh,1.16


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src LayerManager.hh,1.7,1.8 Theme.hh,1.16,1.17 ThemeSelector.cc,1.57,1.58 TimeDisplay.cc,1.10,1.11 TrapData.cc,1.11,1.12 TrapData.hh,1.14,1.15 View.cc,1.19,1.20 World.cc,1.70,1.71 World.hh,1.35,1.36 WorldObj.cc,1.21,1.22 WorldObjData.cc,1.11,1.12 WorldObjDataFactory.hh,1.6,1.7 WorldObjGroupData.cc,1.5,1.6 WorldObjGroupData.hh,1.3,1.4
Date: 9 Jun 2002 14:04:12 -0000

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

Modified Files:
        LayerManager.hh Theme.hh ThemeSelector.cc TimeDisplay.cc 
        TrapData.cc TrapData.hh View.cc World.cc World.hh WorldObj.cc 
        WorldObjData.cc WorldObjDataFactory.hh WorldObjGroupData.cc 
        WorldObjGroupData.hh 
Log Message:
removed redundant includes (simplifies doxygen output)


Index: LayerManager.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/LayerManager.hh,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- LayerManager.hh     7 Jun 2002 20:35:14 -0000       1.7
+++ LayerManager.hh     9 Jun 2002 14:04:10 -0000       1.8
@@ -20,6 +20,7 @@
 #ifndef LAYERMANAGER_HH
 #define LAYERMANAGER_HH
 
+#include <math.h>
 #include <vector>
 #include <ClanLib/display.h>
 

Index: Theme.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/Theme.hh,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- Theme.hh    8 Jun 2002 20:19:54 -0000       1.16
+++ Theme.hh    9 Jun 2002 14:04:10 -0000       1.17
@@ -21,9 +21,6 @@
 #ifndef THEME_HH
 #define THEME_HH
 
-#include <string>
-#include <vector>
-
 #include "MultiLineText.hh"
 #include "PLTXML.hh"
 

Index: ThemeSelector.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/ThemeSelector.cc,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- ThemeSelector.cc    8 Jun 2002 20:19:54 -0000       1.57
+++ ThemeSelector.cc    9 Jun 2002 14:04:10 -0000       1.58
@@ -17,7 +17,6 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include <algorithm>
 #include <config.h>
 #include "globals.hh"
 #include "ThemeSelector.hh"

Index: TimeDisplay.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/TimeDisplay.cc,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- TimeDisplay.cc      8 Jun 2002 20:19:54 -0000       1.10
+++ TimeDisplay.cc      9 Jun 2002 14:04:10 -0000       1.11
@@ -17,7 +17,6 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include <assert.h>
 #include <cstdio>
 
 #include "globals.hh"

Index: TrapData.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/TrapData.cc,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- TrapData.cc 9 Jun 2002 13:03:11 -0000       1.11
+++ TrapData.cc 9 Jun 2002 14:04:10 -0000       1.12
@@ -26,10 +26,8 @@
 #include "traps/Bumper.hh"
 
 #include "PingusError.hh"
-#include "Trap.hh"
 #include "editor/PLFObj.hh"
 #include "XMLhelper.hh"
-#include "TrapData.hh"
 
 TrapData::TrapData (xmlDocPtr doc, xmlNodePtr cur)
 {

Index: TrapData.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/TrapData.hh,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- TrapData.hh 9 Jun 2002 13:03:11 -0000       1.14
+++ TrapData.hh 9 Jun 2002 14:04:10 -0000       1.15
@@ -21,8 +21,6 @@
 #define TRAP_DATA_HH
 
 #include <config.h>
-#include <string>
-#include <iosfwd>
 #include <ClanLib/core.h>
 #include "WorldObjData.hh"
 

Index: View.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/View.cc,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- View.cc     9 Jun 2002 11:18:50 -0000       1.19
+++ View.cc     9 Jun 2002 14:04:10 -0000       1.20
@@ -18,7 +18,6 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include <cassert>
-#include <ClanLib/core.h>
 
 #include "Pingu.hh"
 #include "MouseController.hh"

Index: World.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/World.cc,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- World.cc    9 Jun 2002 13:03:11 -0000       1.70
+++ World.cc    9 Jun 2002 14:04:10 -0000       1.71
@@ -17,10 +17,8 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include <vector>
 #include <cstdio>
 #include <ctime>
-#include <algorithm>
 #include <functional>
 
 #include "ActionHolder.hh"
@@ -37,8 +35,6 @@
 #include "Timer.hh"
 #include "View.hh"
 #include "World.hh"
-#include "WorldObjData.hh"
-#include "algo.hh"
 #include "globals.hh"
 #include "GameTime.hh"
 #include "particles/ParticleHolder.hh"

Index: World.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/World.hh,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- World.hh    8 Jun 2002 20:19:54 -0000       1.35
+++ World.hh    9 Jun 2002 14:04:10 -0000       1.36
@@ -21,6 +21,7 @@
 #define WORLD_HH
 
 #include <list>
+#include <string>
 #include "boost/smart_ptr.hpp"
 #include "WorldObj.hh"
 

Index: WorldObj.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/WorldObj.cc,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- WorldObj.cc 8 Jun 2002 16:08:16 -0000       1.21
+++ WorldObj.cc 9 Jun 2002 14:04:10 -0000       1.22
@@ -25,7 +25,6 @@
 #include "worldobjs/IceBlock.hh"
 #include "worldobjs/ConveyorBelt.hh"
 #include "worldobjs/SwitchDoor.hh"
-#include "WorldObj.hh"
 
 World* WorldObj::world;
 

Index: WorldObjData.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/WorldObjData.cc,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- WorldObjData.cc     30 Nov 2001 20:22:20 -0000      1.11
+++ WorldObjData.cc     9 Jun 2002 14:04:10 -0000       1.12
@@ -17,14 +17,12 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include "boost/smart_ptr.hpp"
-#include "PingusError.hh"
-#include "TrapData.hh"
+//#include "PingusError.hh"
+//#include "TrapData.hh"
 //#include "worldobjs/Teleporter.hh"
 //#include "worldobjs/IceBlock.hh"
 //#include "worldobjs/InfoBox.hh"
 //#include "worldobjs/ConveyorBelt.hh"
 //#include "worldobjs/SwitchDoor.hh"
-#include "WorldObjData.hh"
 
 /* EOF */

Index: WorldObjDataFactory.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/WorldObjDataFactory.hh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- WorldObjDataFactory.hh      9 Jun 2002 13:03:11 -0000       1.6
+++ WorldObjDataFactory.hh      9 Jun 2002 14:04:10 -0000       1.7
@@ -20,7 +20,6 @@
 #ifndef WORLDOBJFACTORY_HH
 #define WORLDOBJFACTORY_HH
 
-#include <string>
 #include <map>
 #include "WorldObj.hh"
 #include "PingusError.hh"

Index: WorldObjGroupData.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/WorldObjGroupData.cc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- WorldObjGroupData.cc        9 Jun 2002 13:03:11 -0000       1.5
+++ WorldObjGroupData.cc        9 Jun 2002 14:04:10 -0000       1.6
@@ -18,7 +18,6 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include <fstream>
-#include "editor/EditorObj.hh"
 #include "editor/EditorObjGroup.hh"
 #include "WorldObj.hh"
 #include "WorldObjGroupData.hh"

Index: WorldObjGroupData.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/WorldObjGroupData.hh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- WorldObjGroupData.hh        9 Jun 2002 13:03:11 -0000       1.3
+++ WorldObjGroupData.hh        9 Jun 2002 14:04:10 -0000       1.4
@@ -20,10 +20,8 @@
 #ifndef WORLDOBJGROUPDATA_HH
 #define WORLDOBJGROUPDATA_HH
 
-#include "boost/smart_ptr.hpp"
 #include "WorldObjData.hh"
 #include <iostream>
-#include <list>
 
 
 class WorldObjGroupData : public WorldObjData




reply via email to

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