cosmetic changes only

This commit is contained in:
Glenn Maynard
2005-12-28 03:30:37 +00:00
parent fe3a68d5cd
commit bc372e308b
2 changed files with 84 additions and 86 deletions
@@ -1,8 +1,8 @@
/* InputHandler_X11 - X-based keyboard input handler. */
#ifndef INPUT_HANDLER_X11_H
#define INPUT_HANDLER_X11_H
/* Get keyboard (and possibly pointer in the future) input through X. */
#include "InputHandler.h"
class InputHandler_X11: public InputHandler
@@ -11,7 +11,7 @@ public:
InputHandler_X11();
~InputHandler_X11();
void Update();
void GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut);
void GetDevicesAndDescriptions( vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut );
};
#define USE_INPUT_HANDLER_X11