]> git.tdb.fi Git - libs/gui.git/blobdiff - source/input/device.h
Style update: remove alignment
[libs/gui.git] / source / input / device.h
index ea41162bb2afa8aa7417f2096f08348a504126dd..3338137eb51e46e50528cf51af02c73beb31ce50 100644 (file)
@@ -1,12 +1,5 @@
-/* $Id$
-
-This file is part of libmspgbase
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GBASE_INPUTDEVICE_H_
-#define MSP_GBASE_INPUTDEVICE_H_
+#ifndef MSP_INPUT_INPUTDEVICE_H_
+#define MSP_INPUT_INPUTDEVICE_H_
 
 #include <string>
 #include <vector>
@@ -29,14 +22,14 @@ public:
 
 protected:
        std::string name;
-       std::vector<char>  buttons;
+       std::vector<char> buttons;
        std::vector<float> axes;
 
        Device() { }
 public:
        virtual ~Device() { }
        const std::string &get_name() const { return name; }
-       bool  get_button_state(unsigned) const;
+       bool get_button_state(unsigned) const;
        float get_axis_value(unsigned) const;
 
        virtual std::string get_button_name(unsigned) const;