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 Makefile.am,1.1,1.2 dou


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/input/buttons Makefile.am,1.1,1.2 double_button.hxx,1.1,1.2 dummy_button.hxx,1.1,1.2 joystick_button.hxx,1.1,1.2 key_button.hxx,1.1,1.2 mouse_button.hxx,1.1,1.2 multiple_button.hxx,1.1,1.2 triple_button.hxx,1.1,1.2 button.hxx,1.1,NONE
Date: 26 Aug 2002 13:53:06 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/input/buttons
In directory dark:/tmp/cvs-serv32547/buttons

Modified Files:
        Makefile.am double_button.hxx dummy_button.hxx 
        joystick_button.hxx key_button.hxx mouse_button.hxx 
        multiple_button.hxx triple_button.hxx 
Removed Files:
        button.hxx 
Log Message:
Moved axis, button, pointer and scroller out of the namespaces, only 
concrete implementations are inside the namespace


Index: Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/input/buttons/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.am 24 Aug 2002 11:37:31 -0000      1.1
+++ Makefile.am 26 Aug 2002 13:53:04 -0000      1.2
@@ -18,7 +18,6 @@
 noinst_LIBRARIES = libpingus_input_buttons.a
 
 libpingus_input_buttons_a_SOURCES =       \
-       button.hxx  \
        double_button.hxx double_button.cxx \
        dummy_button.hxx \
         joystick_button.hxx joystick_button.cxx \

Index: double_button.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/input/buttons/double_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- double_button.hxx   24 Aug 2002 11:37:31 -0000      1.1
+++ double_button.hxx   26 Aug 2002 13:53:04 -0000      1.2
@@ -20,7 +20,7 @@
 #ifndef HEADER_PINGUS_INPUT_DOUBLE_BUTTON_HXX
 #define HEADER_PINGUS_INPUT_DOUBLE_BUTTON_HXX
 
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

Index: dummy_button.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/input/buttons/dummy_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dummy_button.hxx    24 Aug 2002 11:37:31 -0000      1.1
+++ dummy_button.hxx    26 Aug 2002 13:53:04 -0000      1.2
@@ -20,7 +20,7 @@
 #ifndef HEADER_PINGUS_INPUT_DUMMY_BUTTON_HXX
 #define HEADER_PINGUS_INPUT_DUMMY_BUTTON_HXX
 
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

Index: joystick_button.hxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/input/buttons/joystick_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- joystick_button.hxx 24 Aug 2002 11:37:31 -0000      1.1
+++ joystick_button.hxx 26 Aug 2002 13:53:04 -0000      1.2
@@ -20,7 +20,7 @@
 #ifndef HEADER_PINGUS_INPUT_JOYSTICK_BUTTON_HXX
 #define HEADER_PINGUS_INPUT_JOYSTICK_BUTTON_HXX
 
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

Index: key_button.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/input/buttons/key_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- key_button.hxx      24 Aug 2002 11:37:31 -0000      1.1
+++ key_button.hxx      26 Aug 2002 13:53:04 -0000      1.2
@@ -20,7 +20,7 @@
 #ifndef HEADER_PINGUS_INPUT_KEY_BUTTON_HXX
 #define HEADER_PINGUS_INPUT_KEY_BUTTON_HXX
 
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

Index: mouse_button.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/input/buttons/mouse_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mouse_button.hxx    24 Aug 2002 11:37:31 -0000      1.1
+++ mouse_button.hxx    26 Aug 2002 13:53:04 -0000      1.2
@@ -20,7 +20,7 @@
 #ifndef HEADER_PINGUS_INPUT_MOUSE_BUTTON_HXX
 #define HEADER_PINGUS_INPUT_MOUSE_BUTTON_HXX
 
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

Index: multiple_button.hxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/input/buttons/multiple_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- multiple_button.hxx 24 Aug 2002 11:37:31 -0000      1.1
+++ multiple_button.hxx 26 Aug 2002 13:53:04 -0000      1.2
@@ -21,7 +21,7 @@
 #define HEADER_PINGUS_INPUT_MULTIPLE_BUTTON_HXX
 
 #include <vector>
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

Index: triple_button.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/input/buttons/triple_button.hxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- triple_button.hxx   24 Aug 2002 11:37:31 -0000      1.1
+++ triple_button.hxx   26 Aug 2002 13:53:04 -0000      1.2
@@ -20,7 +20,7 @@
 #ifndef HEADER_PINGUS_INPUT_TRIPLE_BUTTON_HXX
 #define HEADER_PINGUS_INPUT_TRIPLE_BUTTON_HXX
 
-#include "button.hxx"
+#include "../button.hxx"
 
 namespace Input {
 

--- button.hxx DELETED ---





reply via email to

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