pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/backgrounds SolidColorBackground.cc,1


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/backgrounds SolidColorBackground.cc,1.15,1.16 SolidColorBackground.hh,1.19,1.20 StarfieldBackground.cc,1.23,1.24 StarfieldBackground.hh,1.17,1.18 SurfaceBackgroundData.cc,1.20,1.21 SurfaceBackgroundData.hh,1.16,1.17 ThunderstormBackgroundData.cc,1.14,1.15 ThunderstormBackgroundData.hh,1.9,1.10
Date: 11 Jun 2002 18:28:39 -0000

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

Modified Files:
        SolidColorBackground.cc SolidColorBackground.hh 
        StarfieldBackground.cc StarfieldBackground.hh 
        SurfaceBackgroundData.cc SurfaceBackgroundData.hh 
        ThunderstormBackgroundData.cc ThunderstormBackgroundData.hh 
Log Message:
replaced shared_ptr<WorldObj> with WorldObj*


Index: SolidColorBackground.cc
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/SolidColorBackground.cc,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- SolidColorBackground.cc     10 Jun 2002 11:00:28 -0000      1.15
+++ SolidColorBackground.cc     11 Jun 2002 18:28:37 -0000      1.16
@@ -51,10 +51,10 @@
     }
 }
 
-boost::shared_ptr<WorldObj> 
+WorldObj* 
 SolidColorBackgroundData::create_WorldObj()
 {
-  return boost::shared_ptr<WorldObj> (new SolidColorBackground (*this));
+  return new SolidColorBackground (*this);
 }
 
 EditorObjLst 
@@ -78,4 +78,5 @@
 }
 
 /* EOF */
+
 

Index: SolidColorBackground.hh
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/SolidColorBackground.hh,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- SolidColorBackground.hh     10 Jun 2002 15:01:23 -0000      1.19
+++ SolidColorBackground.hh     11 Jun 2002 18:28:37 -0000      1.20
@@ -46,7 +46,7 @@
       stream */
   virtual void write_xml(std::ofstream* xml);
 
-  boost::shared_ptr<WorldObj> create_WorldObj();
+  WorldObj* create_WorldObj();
   EditorObjLst create_EditorObj();
 };
 
@@ -112,3 +112,4 @@
 #endif
 
 /* EOF */
+

Index: StarfieldBackground.cc
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/StarfieldBackground.cc,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- StarfieldBackground.cc      10 Jun 2002 15:01:23 -0000      1.23
+++ StarfieldBackground.cc      11 Jun 2002 18:28:37 -0000      1.24
@@ -94,10 +94,10 @@
     }
 }
 
-boost::shared_ptr<WorldObj> 
+WorldObj* 
 StarfieldBackgroundData::create_WorldObj()
 {
-  return boost::shared_ptr<WorldObj> (new StarfieldBackground (*this));
+  return new StarfieldBackground (*this);
 }
 
 EditorObjLst
@@ -223,3 +223,4 @@
 }
 
 /* EOF */
+

Index: StarfieldBackground.hh
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/StarfieldBackground.hh,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- StarfieldBackground.hh      9 Jun 2002 13:03:11 -0000       1.17
+++ StarfieldBackground.hh      11 Jun 2002 18:28:37 -0000      1.18
@@ -41,7 +41,7 @@
   void write_xml(std::ofstream* xml);
   static boost::shared_ptr<WorldObjData> create(xmlDocPtr doc, xmlNodePtr cur);
 
-  boost::shared_ptr<WorldObj> create_WorldObj();
+  WorldObj* create_WorldObj();
   EditorObjLst create_EditorObj();
 };
 
@@ -123,3 +123,4 @@
 #endif
 
 /* EOF */
+

Index: SurfaceBackgroundData.cc
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/SurfaceBackgroundData.cc,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- SurfaceBackgroundData.cc    10 Jun 2002 11:00:28 -0000      1.20
+++ SurfaceBackgroundData.cc    11 Jun 2002 18:28:37 -0000      1.21
@@ -118,10 +118,10 @@
     }      
 }
 
-boost::shared_ptr<WorldObj> 
+WorldObj* 
 SurfaceBackgroundData::create_WorldObj()
 {
-  return boost::shared_ptr<WorldObj> (new SurfaceBackground (*this));
+  return new SurfaceBackground (*this);
 }
 
 EditorObjLst 
@@ -135,3 +135,4 @@
 
 
 /* EOF */
+

Index: SurfaceBackgroundData.hh
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/SurfaceBackgroundData.hh,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- SurfaceBackgroundData.hh    9 Jun 2002 13:03:11 -0000       1.16
+++ SurfaceBackgroundData.hh    11 Jun 2002 18:28:37 -0000      1.17
@@ -79,7 +79,7 @@
       stream */
   void write_xml(std::ofstream* xml);
   
-  boost::shared_ptr<WorldObj> create_WorldObj();
+  WorldObj* create_WorldObj();
   EditorObjLst create_EditorObj();
 };
 
@@ -112,3 +112,4 @@
 #endif
 
 /* EOF */
+

Index: ThunderstormBackgroundData.cc
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/ThunderstormBackgroundData.cc,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ThunderstormBackgroundData.cc       10 Jun 2002 15:01:23 -0000      1.14
+++ ThunderstormBackgroundData.cc       11 Jun 2002 18:28:37 -0000      1.15
@@ -47,10 +47,10 @@
     }
 }
 
-boost::shared_ptr<WorldObj> 
+WorldObj* 
 ThunderstormBackgroundData::create_WorldObj()
 {
-  return boost::shared_ptr<WorldObj> (new ThunderstormBackground ());
+  return new ThunderstormBackground ();
 }
 
 EditorObjLst 
@@ -62,3 +62,4 @@
 }
 
 /* EOF */
+

Index: ThunderstormBackgroundData.hh
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/ThunderstormBackgroundData.hh,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ThunderstormBackgroundData.hh       9 Jun 2002 13:03:11 -0000       1.9
+++ ThunderstormBackgroundData.hh       11 Jun 2002 18:28:37 -0000      1.10
@@ -40,7 +40,7 @@
       stream */
   virtual void write_xml(std::ofstream* xml);
   
-  boost::shared_ptr<WorldObj> create_WorldObj();
+  WorldObj* create_WorldObj();
   EditorObjLst create_EditorObj();
 };
 
@@ -69,3 +69,4 @@
 #endif
 
 /* EOF */
+




reply via email to

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