pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src action_holder.hxx,1.10,1.11 blitter_i


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src action_holder.hxx,1.10,1.11 blitter_impl.hxx,1.4,1.5 config_xml.hxx,1.2,1.3 delta_manager.hxx,1.7,1.8 demo_session.hxx,1.2,1.3 file_writer.hxx,1.1,1.2 pingu_action_factory.hxx,1.9,1.10 smallmap.hxx,1.14,1.15 sound_real.hxx,1.8,1.9 string_converter.hxx,1.9,1.10 time_display.hxx,1.8,1.9 world.hxx,1.20,1.21 xml_file_writer.cxx,1.1,1.2 xml_file_writer.hxx,1.1,1.2 classHeader.inc,1.1,NONE
Date: 28 Dec 2002 16:57:40 -0000

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

Modified Files:
        action_holder.hxx blitter_impl.hxx config_xml.hxx 
        delta_manager.hxx demo_session.hxx file_writer.hxx 
        pingu_action_factory.hxx smallmap.hxx sound_real.hxx 
        string_converter.hxx time_display.hxx world.hxx 
        xml_file_writer.cxx xml_file_writer.hxx 
Removed Files:
        classHeader.inc 
Log Message:
header cleanup


Index: action_holder.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/action_holder.hxx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- action_holder.hxx   8 Nov 2002 01:38:27 -0000       1.10
+++ action_holder.hxx   28 Dec 2002 16:57:38 -0000      1.11
@@ -20,8 +20,8 @@
 #ifndef HEADER_PINGUS_ACTION_HOLDER_HXX
 #define HEADER_PINGUS_ACTION_HOLDER_HXX
 
-#include <string>
 #include <map>
+#include <vector>
 #include "pingu_enums.hxx"
 
 using Actions::ActionName;

Index: blitter_impl.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/blitter_impl.hxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- blitter_impl.hxx    19 Oct 2002 23:23:44 -0000      1.4
+++ blitter_impl.hxx    28 Dec 2002 16:57:38 -0000      1.5
@@ -20,6 +20,13 @@
 #ifndef HEADER_PINGUS_BLITTER_IMPL_HXX
 #define HEADER_PINGUS_BLITTER_IMPL_HXX
 
+#include <iostream>
+#include <ClanLib/Display/SurfaceProviders/canvas.h>
+#include <ClanLib/Display/Display/surface.h>
+#include "indexed_canvas.hxx"
+#include "pingus.hxx"
+
+
 /** A collection of helper functions for the blitter class */
 namespace BlitterImpl
 {

Index: config_xml.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/config_xml.hxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- config_xml.hxx      13 Oct 2002 13:34:40 -0000      1.2
+++ config_xml.hxx      28 Dec 2002 16:57:38 -0000      1.3
@@ -20,6 +20,7 @@
 #ifndef HEADER_PINGUS_CONFIG_XML_HXX
 #define HEADER_PINGUS_CONFIG_XML_HXX
 
+#include <string>
 #include "libxmlfwd.hxx"
 
 /** Reader for the pingus config file */

Index: delta_manager.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/delta_manager.hxx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- delta_manager.hxx   27 Nov 2002 20:05:42 -0000      1.7
+++ delta_manager.hxx   28 Dec 2002 16:57:38 -0000      1.8
@@ -20,8 +20,9 @@
 #ifndef HEADER_PINGUS_DELTA_MANAGER_HXX
 #define HEADER_PINGUS_DELTA_MANAGER_HXX
 
-#include "pingus.hxx"
+#include <assert.h>
 #include <ClanLib/Core/System/system.h>
+#include "pingus.hxx"
 
 class DeltaManager
 {

Index: demo_session.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/demo_session.hxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- demo_session.hxx    3 Oct 2002 12:33:08 -0000       1.2
+++ demo_session.hxx    28 Dec 2002 16:57:38 -0000      1.3
@@ -24,6 +24,7 @@
 
 class Server;
 class XMLPDF;
+class DemoPlayer;
 class PingusCounter;
 
 /** A DemoSession is analog to a GameSession, but instead of loading a

Index: file_writer.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/file_writer.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- file_writer.hxx     20 Dec 2002 18:45:41 -0000      1.1
+++ file_writer.hxx     28 Dec 2002 16:57:38 -0000      1.2
@@ -21,7 +21,8 @@
 #define HEADER_PINGUS_FILE_WRITER_HXX
 
 #include <string>
-#include "vector.hxx"
+
+class Vector;
 
 /** Interface to write out name/value pairs out of some kind of file or
     structure */

Index: pingu_action_factory.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/pingu_action_factory.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- pingu_action_factory.hxx    5 Nov 2002 03:02:48 -0000       1.9
+++ pingu_action_factory.hxx    28 Dec 2002 16:57:38 -0000      1.10
@@ -21,7 +21,7 @@
 #define HEADER_PINGUS_PINGU_ACTION_FACTORY_HXX
 
 #include <map>
-#include <string>
+#include <vector>
 #include "pingu.hxx"
 
 class PinguAction;

Index: smallmap.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/smallmap.hxx,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- smallmap.hxx        10 Oct 2002 12:25:53 -0000      1.14
+++ smallmap.hxx        28 Dec 2002 16:57:38 -0000      1.15
@@ -24,8 +24,10 @@
 #include "gui/component.hxx"
 
 class CL_Key;
-class Client;
 class CL_Canvas;
+class Client;
+class Sprite;
+class Vector;
 
 /** This is the map that appears in the corner of the screen */
 class SmallMap : public GUI::Component

Index: sound_real.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/sound_real.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- sound_real.hxx      1 Dec 2002 17:08:47 -0000       1.8
+++ sound_real.hxx      28 Dec 2002 16:57:38 -0000      1.9
@@ -22,7 +22,6 @@
 #ifndef HEADER_PINGUS_SOUND_REAL_HXX
 #define HEADER_PINGUS_SOUND_REAL_HXX
 
-#include <map>
 #include <vector>
 #include "sound.hxx"
 

Index: string_converter.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/string_converter.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- string_converter.hxx        30 Nov 2002 17:11:55 -0000      1.9
+++ string_converter.hxx        28 Dec 2002 16:57:38 -0000      1.10
@@ -22,7 +22,6 @@
 
 #include "pingus.hxx"
 #include <string>
-#include <stdexcept>
 
 #ifdef HAVE_CONFIG_H
 #include <config.h>

Index: time_display.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/time_display.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- time_display.hxx    24 Oct 2002 15:32:48 -0000      1.8
+++ time_display.hxx    28 Dec 2002 16:57:38 -0000      1.9
@@ -20,6 +20,7 @@
 #ifndef HEADER_PINGUS_TIME_DISPLAY_HXX
 #define HEADER_PINGUS_TIME_DISPLAY_HXX
 
+#include <ClanLib/Display/Display/surface.h>
 #include "gui/component.hxx"
 
 class CL_Font;

Index: world.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/world.hxx,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- world.hxx   28 Dec 2002 16:10:17 -0000      1.20
+++ world.hxx   28 Dec 2002 16:57:38 -0000      1.21
@@ -21,7 +21,6 @@
 #define HEADER_PINGUS_WORLD_HXX
 
 #include "pingus.hxx"
-#include <list>
 #include <vector>
 #include <string>
 
@@ -48,8 +47,6 @@
 class SmallMap;
 class GraphicContext;
 
-using std::list;
-using std::string;
 /** The World holds all objects of the pingu enviroment. 
     
     It holds the pingus, traps, exits, entrances, etc.. It keeps

Index: xml_file_writer.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/xml_file_writer.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xml_file_writer.cxx 20 Dec 2002 18:45:41 -0000      1.1
+++ xml_file_writer.cxx 28 Dec 2002 16:57:38 -0000      1.2
@@ -17,6 +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 <iostream>
+#include "vector.hxx"
 #include "xml_file_writer.hxx"
 
 XMLFileWriter::XMLFileWriter(std::ostream& out_)

Index: xml_file_writer.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/xml_file_writer.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xml_file_writer.hxx 20 Dec 2002 18:45:41 -0000      1.1
+++ xml_file_writer.hxx 28 Dec 2002 16:57:38 -0000      1.2
@@ -20,8 +20,8 @@
 #ifndef HEADER_XML_FILE_WRITER_HXX
 #define HEADER_XML_FILE_WRITER_HXX
 
-#include <iostream>
 #include <stack>
+#include <iosfwd>
 #include "file_writer.hxx"
 
 /** */

--- classHeader.inc DELETED ---




reply via email to

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