pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/worldmap graph.hxx,1.10,1.11 manager.


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/worldmap graph.hxx,1.10,1.11 manager.hxx,1.11,1.12 node.hxx,1.7,1.8 node_data.cxx,1.5,1.6 node_data.hxx,1.8,1.9 pingus.hxx,1.11,1.12 stat.cxx,1.9,1.10 stat.hxx,1.7,1.8 worldmap.hxx,1.11,1.12
Date: 27 Sep 2002 11:26:51 -0000

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

Modified Files:
        graph.hxx manager.hxx node.hxx node_data.cxx node_data.hxx 
        pingus.hxx stat.cxx stat.hxx worldmap.hxx 
Log Message:
- splitted Entrance
- changed operator= return value


Index: graph.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/graph.hxx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- graph.hxx   11 Sep 2002 12:45:58 -0000      1.10
+++ graph.hxx   27 Sep 2002 11:26:49 -0000      1.11
@@ -90,7 +90,7 @@
   /** @} */
       
   Graph (const Graph&);
-  Graph operator= (const Graph&);
+  Graph& operator= (const Graph&);
 };
 
 } // namespace WorldMapNS

Index: manager.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/manager.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- manager.hxx 11 Sep 2002 12:45:58 -0000      1.11
+++ manager.hxx 27 Sep 2002 11:26:49 -0000      1.12
@@ -54,7 +54,7 @@
       
   private:
     WorldMapComponent (const WorldMapComponent&);
-    WorldMapComponent operator= (const WorldMapComponent&);
+    WorldMapComponent& operator= (const WorldMapComponent&);
 
   } worldmap_component;
 
@@ -102,7 +102,7 @@
   void on_startup ();
 
   WorldMapManager (const WorldMapManager&);
-  WorldMapManager operator= (const WorldMapManager&);
+  WorldMapManager& operator= (const WorldMapManager&);
 };
 
 } // namespace WorldMapNS

Index: node.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/node.hxx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- node.hxx    11 Sep 2002 12:45:58 -0000      1.7
+++ node.hxx    27 Sep 2002 11:26:49 -0000      1.8
@@ -49,7 +49,7 @@
       
 private:
   Node (const Node&);
-  Node operator= (const Node&);
+  Node& operator= (const Node&);
 };
 
 /** A wrap/beam object which brings you to the next worldmap 
@@ -73,7 +73,7 @@
 
 private:
   TubeNode (const TubeNode&);
-  TubeNode operator= (const TubeNode&);
+  TubeNode& operator= (const TubeNode&);
 };
 
 /** The entrance to a level 
@@ -111,7 +111,7 @@
       
 private:
   LevelNode (const LevelNode&);
-  LevelNode operator= (const LevelNode&);
+  LevelNode& operator= (const LevelNode&);
 };
 
 } // namespace WorldMapNS

Index: node_data.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/node_data.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- node_data.cxx       11 Sep 2002 12:45:58 -0000      1.5
+++ node_data.cxx       27 Sep 2002 11:26:49 -0000      1.6
@@ -29,7 +29,7 @@
 {
 }
 
-NodeData
+NodeData&
 NodeData::operator= (const NodeData& old)
 {
   if (this == &old)
@@ -62,7 +62,7 @@
 {
 }
 
-LevelNodeData
+LevelNodeData&
 LevelNodeData::operator= (const LevelNodeData& old)
 {
   if (this == &old)
@@ -121,7 +121,7 @@
 {
 }
 
-TubeNodeData
+TubeNodeData&
 TubeNodeData::operator= (const TubeNodeData& old)
 {
   if (this == &old)

Index: node_data.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/node_data.hxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- node_data.hxx       11 Sep 2002 12:45:58 -0000      1.8
+++ node_data.hxx       27 Sep 2002 11:26:49 -0000      1.9
@@ -70,7 +70,7 @@
   NodeData () { }
       
   NodeData (const NodeData& old);
-  NodeData operator= (const NodeData& old);
+  NodeData& operator= (const NodeData& old);
       
   virtual ~NodeData () { }
 
@@ -102,7 +102,7 @@
       
 private:
   EmptyNodeData (const EmptyNodeData&);
-  EmptyNodeData operator= (const EmptyNodeData&);
+  EmptyNodeData& operator= (const EmptyNodeData&);
 };
 
 /** Level */
@@ -119,7 +119,7 @@
   LevelNodeData () { }
       
   LevelNodeData (const LevelNodeData& old);
-  LevelNodeData operator= (const LevelNodeData& old);
+  LevelNodeData& operator= (const LevelNodeData& old);
       
   virtual ~LevelNodeData () {}
 
@@ -143,7 +143,7 @@
   TubeNodeData () { }
       
   TubeNodeData (const TubeNodeData& old);
-  TubeNodeData operator= (const TubeNodeData& old);
+  TubeNodeData& operator= (const TubeNodeData& old);
   
   virtual ~TubeNodeData () { }
 
@@ -157,5 +157,3 @@
 #endif
 
 /* EOF */
-
-

Index: pingus.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/pingus.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- pingus.hxx  11 Sep 2002 12:45:58 -0000      1.11
+++ pingus.hxx  27 Sep 2002 11:26:49 -0000      1.12
@@ -215,7 +215,7 @@
   
 private:
   Pingus (const Pingus&);
-  Pingus operator= (const Pingus&);
+  Pingus& operator= (const Pingus&);
 };
 
 } // namespace WorldMapNS

Index: stat.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/stat.cxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- stat.cxx    11 Sep 2002 12:45:58 -0000      1.9
+++ stat.cxx    27 Sep 2002 11:26:49 -0000      1.10
@@ -45,7 +45,7 @@
 {
 }
 
-PingusWorldMapNodeStat
+PingusWorldMapNodeStat&
 PingusWorldMapNodeStat::operator= (const PingusWorldMapNodeStat& old)
 {
   if (this == &old)

Index: stat.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/stat.hxx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- stat.hxx    11 Sep 2002 12:45:58 -0000      1.7
+++ stat.hxx    27 Sep 2002 11:26:49 -0000      1.8
@@ -41,7 +41,7 @@
   PingusWorldMapNodeStat ();
 
   PingusWorldMapNodeStat (const PingusWorldMapNodeStat& old);
-  PingusWorldMapNodeStat operator= (const PingusWorldMapNodeStat& old);
+  PingusWorldMapNodeStat& operator= (const PingusWorldMapNodeStat& old);
 };
 
 /** Loads a status file and gives you access to the information, which
@@ -78,7 +78,7 @@
   
 private:
   PingusWorldMapStat (const PingusWorldMapStat&);
-  PingusWorldMapStat operator= (const PingusWorldMapStat&);
+  PingusWorldMapStat& operator= (const PingusWorldMapStat&);
 };
 
 } // namespace WorldMapNS

Index: worldmap.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/worldmap.hxx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- worldmap.hxx        11 Sep 2002 12:45:58 -0000      1.11
+++ worldmap.hxx        27 Sep 2002 11:26:49 -0000      1.12
@@ -146,7 +146,7 @@
       
 private:
   WorldMap (const WorldMap&);
-  WorldMap operator= (const WorldMap&);
+  WorldMap& operator= (const WorldMap&);
 };
 
 } // namespace WorldMapNS





reply via email to

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