pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/actions angel.hxx,1.10,1.11 basher.hx


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/actions angel.hxx,1.10,1.11 basher.hxx,1.10,1.11 blocker.hxx,1.10,1.11 boarder.hxx,1.9,1.10 bomber.hxx,1.11,1.12 bridger.hxx,1.12,1.13 climber.hxx,1.9,1.10 digger.hxx,1.8,1.9 drown.hxx,1.8,1.9 exiter.hxx,1.8,1.9 faller.hxx,1.13,1.14 floater.hxx,1.10,1.11 jumper.hxx,1.8,1.9 laser_kill.hxx,1.9,1.10 miner.hxx,1.8,1.9 rocket_launcher.hxx,1.8,1.9 slider.hxx,1.8,1.9 smashed.hxx,1.9,1.10 splashed.hxx,1.9,1.10 superman.hxx,1.9,1.10 teleported.hxx,1.8,1.9 waiter.hxx,1.8,1.9 walker.hxx,1.8,1.9
Date: 27 Sep 2002 11:27:17 -0000

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

Modified Files:
        angel.hxx basher.hxx blocker.hxx boarder.hxx bomber.hxx 
        bridger.hxx climber.hxx digger.hxx drown.hxx exiter.hxx 
        faller.hxx floater.hxx jumper.hxx laser_kill.hxx miner.hxx 
        rocket_launcher.hxx slider.hxx smashed.hxx splashed.hxx 
        superman.hxx teleported.hxx waiter.hxx walker.hxx 
Log Message:
- splitted Entrance
- changed operator= return value


Index: angel.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/angel.hxx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- angel.hxx   10 Sep 2002 19:24:19 -0000      1.10
+++ angel.hxx   27 Sep 2002 11:26:44 -0000      1.11
@@ -44,7 +44,7 @@
 
 private:
   Angel (const Angel&);
-  Angel operator= (const Angel&);
+  Angel& operator= (const Angel&);
 };
 
 } // namespace Actions

Index: basher.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/basher.hxx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- basher.hxx  10 Sep 2002 19:24:19 -0000      1.10
+++ basher.hxx  27 Sep 2002 11:26:44 -0000      1.11
@@ -53,7 +53,7 @@
   
 private:
   Basher (const Basher&);
-  Basher operator= (const Basher&);
+  Basher& operator= (const Basher&);
 };
 
 } // namespace Actions

Index: blocker.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/blocker.hxx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- blocker.hxx 18 Sep 2002 10:50:57 -0000      1.10
+++ blocker.hxx 27 Sep 2002 11:26:44 -0000      1.11
@@ -47,7 +47,7 @@
   void  catch_pingu(Pingu* pingu);
 
   Blocker (const Blocker&);
-  Blocker operator= (const Blocker&);
+  Blocker& operator= (const Blocker&);
 };
 
 } // namespace Actions

Index: boarder.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/boarder.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- boarder.hxx 10 Sep 2002 19:24:19 -0000      1.9
+++ boarder.hxx 27 Sep 2002 11:26:44 -0000      1.10
@@ -48,7 +48,7 @@
   bool on_ground ();
   
   Boarder (const Boarder&); 
-  Boarder operator= (const Boarder&); 
+  Boarder& operator= (const Boarder&); 
 };
 
 } // namespace Actions

Index: bomber.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/bomber.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- bomber.hxx  10 Sep 2002 19:24:19 -0000      1.11
+++ bomber.hxx  27 Sep 2002 11:26:44 -0000      1.12
@@ -59,7 +59,7 @@
   
 private:
   Bomber (const Bomber&);
-  Bomber operator= (const Bomber&);
+  Bomber& operator= (const Bomber&);
 };
 
 } // namespace Actions

Index: bridger.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/bridger.hxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- bridger.hxx 24 Sep 2002 17:03:28 -0000      1.12
+++ bridger.hxx 27 Sep 2002 11:26:44 -0000      1.13
@@ -72,7 +72,7 @@
   
 private:
   Bridger (const Bridger&);
-  Bridger operator= (const Bridger&); 
+  Bridger& operator= (const Bridger&); 
 };
 
 } // namespace Actions

Index: climber.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/climber.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- climber.hxx 16 Sep 2002 23:06:01 -0000      1.9
+++ climber.hxx 27 Sep 2002 11:26:44 -0000      1.10
@@ -45,7 +45,7 @@
   
 private:
   Climber (const Climber&);
-  Climber operator= (const Climber&);
+  Climber& operator= (const Climber&);
 };
 
 } // namespace Actions

Index: digger.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/digger.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- digger.hxx  10 Sep 2002 19:24:19 -0000      1.8
+++ digger.hxx  27 Sep 2002 11:26:44 -0000      1.9
@@ -48,7 +48,7 @@
 
 private:
   Digger (const Digger&);
-  Digger operator= (const Digger&);
+  Digger& operator= (const Digger&);
 };
 
 } // namespace Actions

Index: drown.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/drown.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- drown.hxx   10 Sep 2002 19:24:19 -0000      1.8
+++ drown.hxx   27 Sep 2002 11:26:44 -0000      1.9
@@ -44,7 +44,7 @@
   
 private:
   Drown (const Drown&);
-  Drown operator= (const Drown&);
+  Drown& operator= (const Drown&);
 };
 
 } // namespace Actions

Index: exiter.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/exiter.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- exiter.hxx  10 Sep 2002 19:24:19 -0000      1.8
+++ exiter.hxx  27 Sep 2002 11:26:44 -0000      1.9
@@ -41,7 +41,7 @@
   
 private:
   Exiter (const Exiter&);
-  Exiter operator= (const Exiter&);
+  Exiter& operator= (const Exiter&);
 };
 
 } // namespace Actions

Index: faller.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/faller.hxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- faller.hxx  10 Sep 2002 19:24:19 -0000      1.13
+++ faller.hxx  27 Sep 2002 11:26:44 -0000      1.14
@@ -52,7 +52,7 @@
   
 private:
   Faller (const Faller&);
-  Faller operator= (const Faller&);
+  Faller& operator= (const Faller&);
 };
 
 } // namespace Actions

Index: floater.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/floater.hxx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- floater.hxx 10 Sep 2002 19:24:19 -0000      1.10
+++ floater.hxx 27 Sep 2002 11:26:44 -0000      1.11
@@ -48,7 +48,7 @@
   
 private:
   Floater (const Floater&);
-  Floater operator= (const Floater&);
+  Floater& operator= (const Floater&);
 };
 
 } // namespace Actions

Index: jumper.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/jumper.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- jumper.hxx  10 Sep 2002 19:24:19 -0000      1.8
+++ jumper.hxx  27 Sep 2002 11:26:44 -0000      1.9
@@ -41,7 +41,7 @@
   
 private:
   Jumper (const Jumper&);
-  Jumper operator= (const Jumper&);
+  Jumper& operator= (const Jumper&);
 };
 
 } // namespace Actions

Index: laser_kill.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/laser_kill.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- laser_kill.hxx      14 Sep 2002 22:41:31 -0000      1.9
+++ laser_kill.hxx      27 Sep 2002 11:26:44 -0000      1.10
@@ -45,7 +45,7 @@
   
 private:
   LaserKill (const LaserKill&);
-  LaserKill operator= (const LaserKill&);
+  LaserKill& operator= (const LaserKill&);
 };
 
 } // namespace Actions

Index: miner.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/miner.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- miner.hxx   10 Sep 2002 19:24:19 -0000      1.8
+++ miner.hxx   27 Sep 2002 11:26:44 -0000      1.9
@@ -45,7 +45,7 @@
   
 private:
   Miner (const Miner&);
-  Miner operator= (const Miner&); 
+  Miner& operator= (const Miner&); 
 };
 
 } // namespace Actions

Index: rocket_launcher.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/rocket_launcher.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- rocket_launcher.hxx 10 Sep 2002 19:24:19 -0000      1.8
+++ rocket_launcher.hxx 27 Sep 2002 11:26:44 -0000      1.9
@@ -44,7 +44,7 @@
   
 private:
   RocketLauncher (const RocketLauncher&);
-  RocketLauncher operator= (const RocketLauncher&);
+  RocketLauncher& operator= (const RocketLauncher&);
 };
 
 } // namespace Actions

Index: slider.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/slider.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- slider.hxx  10 Sep 2002 19:24:19 -0000      1.8
+++ slider.hxx  27 Sep 2002 11:26:45 -0000      1.9
@@ -42,7 +42,7 @@
   
 private:
   Slider (const Slider&);
-  Slider operator= (const Slider&);
+  Slider& operator= (const Slider&);
 };
 
 } // namespace Actions

Index: smashed.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/smashed.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- smashed.hxx 16 Sep 2002 16:47:41 -0000      1.9
+++ smashed.hxx 27 Sep 2002 11:26:45 -0000      1.10
@@ -47,7 +47,7 @@
   
 private:
   Smashed (const Smashed&);
-  Smashed operator= (const Smashed&);
+  Smashed& operator= (const Smashed&);
 };
 
 } // namespace Actions

Index: splashed.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/splashed.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- splashed.hxx        16 Sep 2002 16:47:41 -0000      1.9
+++ splashed.hxx        27 Sep 2002 11:26:45 -0000      1.10
@@ -46,7 +46,7 @@
   
 private:
   Splashed (const Splashed&);
-  Splashed operator= (const Splashed&);
+  Splashed& operator= (const Splashed&);
 };
 
 } // namespace Actions

Index: superman.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/superman.hxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- superman.hxx        10 Sep 2002 19:24:19 -0000      1.9
+++ superman.hxx        27 Sep 2002 11:26:45 -0000      1.10
@@ -43,7 +43,7 @@
 
 private:
   Superman (const Superman&);
-  Superman operator= (const Superman&);
+  Superman& operator= (const Superman&);
 };
 
 } // namespace Actions

Index: teleported.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/teleported.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- teleported.hxx      10 Sep 2002 19:24:19 -0000      1.8
+++ teleported.hxx      27 Sep 2002 11:26:45 -0000      1.9
@@ -45,7 +45,7 @@
   
 private:
   Teleported (const Teleported&);
-  Teleported operator= (const Teleported&);
+  Teleported& operator= (const Teleported&);
 };
 
 }

Index: waiter.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/waiter.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- waiter.hxx  10 Sep 2002 19:24:19 -0000      1.8
+++ waiter.hxx  27 Sep 2002 11:26:45 -0000      1.9
@@ -46,7 +46,7 @@
   
 private:
   Waiter (const Waiter&);
-  Waiter operator= (const Waiter&);
+  Waiter& operator= (const Waiter&);
 };
 
 } // namespace Actions

Index: walker.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/walker.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- walker.hxx  10 Sep 2002 19:24:19 -0000      1.8
+++ walker.hxx  27 Sep 2002 11:26:45 -0000      1.9
@@ -44,7 +44,7 @@
   
 private:
   Walker (const Walker&);
-  Walker operator= (const Walker&);
+  Walker& operator= (const Walker&);
 };
 
 } // namespace Actions





reply via email to

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