pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/entrances cloud.hxx,1.2,1.3 woodthing


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/entrances cloud.hxx,1.2,1.3 woodthing.hxx,1.2,1.3
Date: 23 Aug 2002 15:50:27 -0000

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

Modified Files:
        cloud.hxx woodthing.hxx 
Log Message:
- added copy constructor/operator= or private declarations
- some cleanup


Index: cloud.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/entrances/cloud.hxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cloud.hxx   24 Jun 2002 22:52:59 -0000      1.2
+++ cloud.hxx   23 Aug 2002 15:49:55 -0000      1.3
@@ -30,6 +30,10 @@
   Cloud(EntranceData);
 
   void draw_offset(int x, int y, float s = 1.0);
+  
+private:
+  Cloud (const Cloud&);
+  Cloud operator= (const Cloud&);
 };
 
 #endif

Index: woodthing.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/entrances/woodthing.hxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- woodthing.hxx       24 Jun 2002 22:52:59 -0000      1.2
+++ woodthing.hxx       23 Aug 2002 15:49:55 -0000      1.3
@@ -23,7 +23,6 @@
 #include "../game_counter.hxx"
 #include "../entrance.hxx"
 
-///
 class WoodThing : public Entrance
 {
 private:
@@ -35,6 +34,10 @@
 
   void update(float delta);
   void draw_offset(int x, int y, float s = 1.0);
+  
+private:
+  WoodThing (const WoodThing&);
+  WoodThing operator= (const WoodThing&);
 };
 
 #endif





reply via email to

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