pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/input/buttons dummy_button.hxx, 1.4,


From: Ingo Ruhnke
Subject: [Pingus-CVS] CVS: Games/Pingus/src/input/buttons dummy_button.hxx, 1.4, 1.5
Date: Mon, 20 Oct 2003 21:28:57 +0200

Update of /var/lib/cvs/Games/Pingus/src/input/buttons
In directory dark:/tmp/cvs-serv7605/input/buttons

Modified Files:
        dummy_button.hxx 
Log Message:
misc stuff

Index: dummy_button.hxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/input/buttons/dummy_button.hxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dummy_button.hxx    19 Apr 2003 10:23:19 -0000      1.4
+++ dummy_button.hxx    20 Oct 2003 19:28:55 -0000      1.5
@@ -22,29 +22,30 @@
 
 #include "../button.hxx"
 
+namespace Pingus {
 namespace Input {
+namespace Buttons {
 
-  namespace Buttons {
-
-    /**
-      @brief dummy class to be used if a button is required but not defined
+/**
+   @brief dummy class to be used if a button is required but not defined
 
-      XML definition: none
-      */
-    class DummyButton : public Button  {
-      public:
-        DummyButton () { }
+   XML definition: none
+*/
+class DummyButton : public Button  {
+public:
+  DummyButton () { }
 
-        virtual bool is_pressed ()  const { return false; }
-        virtual void update (float) { }
+  virtual bool is_pressed ()  const { return false; }
+  virtual void update (float) { }
 
-      private:
-        DummyButton (const DummyButton&);
-        DummyButton& operator= (const DummyButton&);
-    };
+private:
+  DummyButton (const DummyButton&);
+  DummyButton& operator= (const DummyButton&);
+};
 
-  }
-}
+} // namespace Buttons
+} // namespace Input
+} // namespace Pingus
 
 #endif
 





reply via email to

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