pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/editorobjs bumper_obj.cxx,1.5,1.6 bum


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/editorobjs bumper_obj.cxx,1.5,1.6 bumper_obj.hxx,1.3,1.4 fake_exit_obj.cxx,1.6,1.7 fake_exit_obj.hxx,1.4,1.5 guillotine_obj.cxx,1.5,1.6 guillotine_obj.hxx,1.3,1.4 hammer_obj.cxx,1.5,1.6 hammer_obj.hxx,1.3,1.4 laser_exit_obj.cxx,1.5,1.6 laser_exit_obj.hxx,1.3,1.4 smasher_obj.hxx,1.4,1.5 spike_obj.cxx,1.5,1.6 spike_obj.hxx,1.3,1.4 teleporter_obj.hxx,1.2,1.3 teleporter_target_obj.cxx,1.2,1.3
Date: 10 Sep 2002 19:24:22 -0000

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

Modified Files:
        bumper_obj.cxx bumper_obj.hxx fake_exit_obj.cxx 
        fake_exit_obj.hxx guillotine_obj.cxx guillotine_obj.hxx 
        hammer_obj.cxx hammer_obj.hxx laser_exit_obj.cxx 
        laser_exit_obj.hxx smasher_obj.hxx spike_obj.cxx spike_obj.hxx 
        teleporter_obj.hxx teleporter_target_obj.cxx 
Log Message:
changed indention of namespaces in a few places

Index: bumper_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/bumper_obj.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- bumper_obj.cxx      10 Sep 2002 14:33:07 -0000      1.5
+++ bumper_obj.cxx      10 Sep 2002 19:24:19 -0000      1.6
@@ -74,6 +74,6 @@
   return str;
 }
   
-}
+} // namespace EditorObjs
 
 /* EOF */

Index: bumper_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/bumper_obj.hxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- bumper_obj.hxx      9 Sep 2002 16:13:44 -0000       1.3
+++ bumper_obj.hxx      10 Sep 2002 19:24:19 -0000      1.4
@@ -52,7 +52,7 @@
     BumperObj operator= (const BumperObj&);
 };
 
-}
+} // namespace EditorObjs
 
 #endif
 

Index: fake_exit_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/fake_exit_obj.cxx,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- fake_exit_obj.cxx   10 Sep 2002 14:33:07 -0000      1.6
+++ fake_exit_obj.cxx   10 Sep 2002 19:24:19 -0000      1.7
@@ -74,6 +74,6 @@
   return str;
 }
   
-}
+} // namespace EditorObjs
 
 /* EOF */

Index: fake_exit_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/fake_exit_obj.hxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- fake_exit_obj.hxx   9 Sep 2002 16:55:07 -0000       1.4
+++ fake_exit_obj.hxx   10 Sep 2002 19:24:19 -0000      1.5
@@ -23,33 +23,33 @@
 #include "../editor/sprite_editorobj.hxx"
 
 namespace WorldObjsData {
-  class FakeExitData;
+class FakeExitData;
 }
 
 namespace EditorObjs {
 
 class FakeExitObj : public SpriteEditorObj
 {
-  private:
-    int frame;
-    WorldObjsData::FakeExitData* const data;
+private:
+  int frame;
+  WorldObjsData::FakeExitData* const data;
   
-  public:
-    FakeExitObj (WorldObjsData::FakeExitData* data_);
-   ~FakeExitObj ();
+public:
+  FakeExitObj (WorldObjsData::FakeExitData* data_);
+  ~FakeExitObj ();
    
-    static EditorObjLst create (const CL_Vector& pos);
+  static EditorObjLst create (const CL_Vector& pos);
 
-    EditorObj* duplicate ();
+  EditorObj* duplicate ();
     
-    void write_xml (std::ostream& xml);
-    void draw (EditorView* view);
+  void write_xml (std::ostream& xml);
+  void draw (EditorView* view);
     
-    std::string status_line ();
+  std::string status_line ();
   
-  private:
-    FakeExitObj (const FakeExitObj&);
-    FakeExitObj operator= (const FakeExitObj&);
+private:
+  FakeExitObj (const FakeExitObj&);
+  FakeExitObj operator= (const FakeExitObj&);
 };
 
 } // namespace EditorObjs

Index: guillotine_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/guillotine_obj.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- guillotine_obj.cxx  10 Sep 2002 14:33:07 -0000      1.5
+++ guillotine_obj.cxx  10 Sep 2002 19:24:19 -0000      1.6
@@ -72,6 +72,6 @@
   return str;
 }
   
-}
+} // namespace EditorObjs
 
 /* EOF */

Index: guillotine_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/guillotine_obj.hxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- guillotine_obj.hxx  9 Sep 2002 16:13:44 -0000       1.3
+++ guillotine_obj.hxx  10 Sep 2002 19:24:19 -0000      1.4
@@ -23,36 +23,36 @@
 #include "../editor/sprite_editorobj.hxx"
 
 namespace WorldObjsData {
-  class GuillotineData;
+class GuillotineData;
 }
 
 namespace EditorObjs {
 
 class GuillotineObj : public SpriteEditorObj
 {
-  private:
-    int frame;
-    WorldObjsData::GuillotineData* const data;
+private:
+  int frame;
+  WorldObjsData::GuillotineData* const data;
   
-  public:
-    GuillotineObj (WorldObjsData::GuillotineData* data_);
-   ~GuillotineObj ();
+public:
+  GuillotineObj (WorldObjsData::GuillotineData* data_);
+  ~GuillotineObj ();
    
-    static EditorObjLst create (const CL_Vector& pos);
+  static EditorObjLst create (const CL_Vector& pos);
 
-    EditorObj* duplicate ();
+  EditorObj* duplicate ();
     
-    void write_xml (std::ostream& xml);
-    void draw (EditorView* view);
+  void write_xml (std::ostream& xml);
+  void draw (EditorView* view);
     
-    std::string status_line ();
+  std::string status_line ();
   
-  private:
-    GuillotineObj (const GuillotineObj&);
-    GuillotineObj operator= (const GuillotineObj&);
+private:
+  GuillotineObj (const GuillotineObj&);
+  GuillotineObj operator= (const GuillotineObj&);
 };
 
-}
+} // namespace EditorObjs
 
 #endif
 

Index: hammer_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/hammer_obj.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- hammer_obj.cxx      10 Sep 2002 14:33:07 -0000      1.5
+++ hammer_obj.cxx      10 Sep 2002 19:24:19 -0000      1.6
@@ -73,6 +73,6 @@
   return str;
 }
   
-}
+} // namespace EditorObjs
 
 /* EOF */

Index: hammer_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/hammer_obj.hxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- hammer_obj.hxx      9 Sep 2002 16:13:44 -0000       1.3
+++ hammer_obj.hxx      10 Sep 2002 19:24:19 -0000      1.4
@@ -23,36 +23,36 @@
 #include "../editor/sprite_editorobj.hxx"
 
 namespace WorldObjsData {
-  class HammerData;
+class HammerData;
 }
 
 namespace EditorObjs {
 
 class HammerObj : public SpriteEditorObj
 {
-  private:
-    int frame;
-    WorldObjsData::HammerData* const data;
+private:
+  int frame;
+  WorldObjsData::HammerData* const data;
   
-  public:
-    HammerObj (WorldObjsData::HammerData* data_);
-   ~HammerObj ();
+public:
+  HammerObj (WorldObjsData::HammerData* data_);
+  ~HammerObj ();
    
-    static EditorObjLst create (const CL_Vector& pos);
+  static EditorObjLst create (const CL_Vector& pos);
 
-    EditorObj* duplicate ();
+  EditorObj* duplicate ();
     
-    void write_xml (std::ostream& xml);
-    void draw (EditorView* view);
+  void write_xml (std::ostream& xml);
+  void draw (EditorView* view);
     
-    std::string status_line ();
+  std::string status_line ();
   
-  private:
-    HammerObj (const HammerObj&);
-    HammerObj operator= (const HammerObj&);
+private:
+  HammerObj (const HammerObj&);
+  HammerObj operator= (const HammerObj&);
 };
 
-}
+} // namespace EditorObjs
 
 #endif
 

Index: laser_exit_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/laser_exit_obj.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- laser_exit_obj.cxx  10 Sep 2002 14:33:07 -0000      1.5
+++ laser_exit_obj.cxx  10 Sep 2002 19:24:19 -0000      1.6
@@ -73,6 +73,6 @@
   return str;
 }
   
-}
+} // namespace EditorObjs
 
 /* EOF */

Index: laser_exit_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/laser_exit_obj.hxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- laser_exit_obj.hxx  9 Sep 2002 16:13:44 -0000       1.3
+++ laser_exit_obj.hxx  10 Sep 2002 19:24:19 -0000      1.4
@@ -23,37 +23,37 @@
 #include "../editor/sprite_editorobj.hxx"
 
 namespace WorldObjsData {
-  class LaserExitData;
+class LaserExitData;
 }
 
 namespace EditorObjs {
 
 class LaserExitObj : public SpriteEditorObj
 {
-  private:
-    int frame;
-    WorldObjsData::LaserExitData* const data;
+private:
+  int frame;
+  WorldObjsData::LaserExitData* const data;
   
-  public:
-    LaserExitObj (WorldObjsData::LaserExitData* data_);
-   ~LaserExitObj ();
+public:
+  LaserExitObj (WorldObjsData::LaserExitData* data_);
+  ~LaserExitObj ();
 
-    static EditorObjLst create (const CL_Vector& pos);
+  static EditorObjLst create (const CL_Vector& pos);
 
    
-    EditorObj* duplicate ();
+  EditorObj* duplicate ();
     
-    void write_xml (std::ostream& xml);
-    void draw (EditorView* view);
+  void write_xml (std::ostream& xml);
+  void draw (EditorView* view);
     
-    std::string status_line ();
+  std::string status_line ();
   
-  private:
-    LaserExitObj (const LaserExitObj&);
-    LaserExitObj operator= (const LaserExitObj&);
+private:
+  LaserExitObj (const LaserExitObj&);
+  LaserExitObj operator= (const LaserExitObj&);
 };
 
-}
+} // namespace EditorObjs
 
 #endif
 

Index: smasher_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/smasher_obj.hxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- smasher_obj.hxx     10 Sep 2002 14:33:07 -0000      1.4
+++ smasher_obj.hxx     10 Sep 2002 19:24:19 -0000      1.5
@@ -23,36 +23,36 @@
 #include "../editor/sprite_editorobj.hxx"
 
 namespace WorldObjsData {
-  class SmasherData;
+class SmasherData;
 }
 
 namespace EditorObjs {
 
 class SmasherObj : public SpriteEditorObj
 {
-  private:
-    int frame;
-    WorldObjsData::SmasherData* const data;
+private:
+  int frame;
+  WorldObjsData::SmasherData* const data;
   
-  public:
-    SmasherObj (const WorldObjsData::SmasherData& data_);
-   ~SmasherObj ();
+public:
+  SmasherObj (const WorldObjsData::SmasherData& data_);
+  ~SmasherObj ();
 
-    static EditorObjLst create (const CL_Vector& pos);
+  static EditorObjLst create (const CL_Vector& pos);
    
-    EditorObj* duplicate ();
+  EditorObj* duplicate ();
     
-    void write_xml (std::ostream& xml);
-    void draw (EditorView* view);
+  void write_xml (std::ostream& xml);
+  void draw (EditorView* view);
     
-    std::string status_line ();
+  std::string status_line ();
   
-  private:
-    SmasherObj (const SmasherObj&);
-    SmasherObj operator= (const SmasherObj&);
+private:
+  SmasherObj (const SmasherObj&);
+  SmasherObj operator= (const SmasherObj&);
 };
 
-}
+} // namespace EditorObjs
 
 #endif
 

Index: spike_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/spike_obj.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- spike_obj.cxx       10 Sep 2002 14:33:07 -0000      1.5
+++ spike_obj.cxx       10 Sep 2002 19:24:19 -0000      1.6
@@ -72,6 +72,6 @@
   return str;
 }
   
-}
+} // namespace EditorObjs
 
 /* EOF */

Index: spike_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/spike_obj.hxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- spike_obj.hxx       9 Sep 2002 16:13:44 -0000       1.3
+++ spike_obj.hxx       10 Sep 2002 19:24:19 -0000      1.4
@@ -23,36 +23,36 @@
 #include "../editor/sprite_editorobj.hxx"
 
 namespace WorldObjsData {
-  class SpikeData;
-}
+class SpikeData;
+} // namespace WorldObjsData
 
 namespace EditorObjs {
 
 class SpikeObj : public SpriteEditorObj
 {
-  private:
-    int frame;
-    WorldObjsData::SpikeData* const data;
+private:
+  int frame;
+  WorldObjsData::SpikeData* const data;
   
-  public:
-    SpikeObj (WorldObjsData::SpikeData* data_);
-   ~SpikeObj ();
+public:
+  SpikeObj (WorldObjsData::SpikeData* data_);
+  ~SpikeObj ();
    
-    static EditorObjLst create (const CL_Vector& pos);
+  static EditorObjLst create (const CL_Vector& pos);
 
-    EditorObj* duplicate ();
+  EditorObj* duplicate ();
     
-    void write_xml (std::ostream& xml);
-    void draw (EditorView* view);
+  void write_xml (std::ostream& xml);
+  void draw (EditorView* view);
     
-    std::string status_line ();
+  std::string status_line ();
   
-  private:
-    SpikeObj (const SpikeObj&);
-    SpikeObj operator= (const SpikeObj&);
+private:
+  SpikeObj (const SpikeObj&);
+  SpikeObj operator= (const SpikeObj&);
 };
 
-}
+} // namespace EditorObjs
 
 #endif
 

Index: teleporter_obj.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/teleporter_obj.hxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- teleporter_obj.hxx  10 Sep 2002 12:46:55 -0000      1.2
+++ teleporter_obj.hxx  10 Sep 2002 19:24:19 -0000      1.3
@@ -25,7 +25,7 @@
 class EditorView;
 
 namespace WorldObjsData {
-  class TeleporterData;
+class TeleporterData;
 }
 
 namespace EditorObjs {

Index: teleporter_target_obj.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/editorobjs/teleporter_target_obj.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- teleporter_target_obj.cxx   10 Sep 2002 14:33:07 -0000      1.2
+++ teleporter_target_obj.cxx   10 Sep 2002 19:24:19 -0000      1.3
@@ -47,6 +47,6 @@
   return str;
 }
 
-}
+} // namespace EditorObjs
 
 /* EOF */





reply via email to

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