]> git.mxchange.org Git - flightgear.git/blobdiff - src/Input/FGLinuxEventInput.hxx
Fix MSVC9 build
[flightgear.git] / src / Input / FGLinuxEventInput.hxx
index 5f7a58117282597d27770f833507c8b46dca1bf0..3676c48cbb8ee3a37b657384d3ea09da7654a647 100644 (file)
@@ -56,9 +56,12 @@ public:
 
   int GetFd() { return fd; }
 
+  double Normalize( struct input_event & event );
 private:
   string devname;
   int fd;
+
+  map<unsigned int,input_absinfo> absinfo;
 };
 
 class FGLinuxEventInput : public FGEventInput {
@@ -71,6 +74,7 @@ public:
   void AddHalDevice( const char * udi );
 protected:
   LibHalContext *halcontext;
+
 };
 
 #endif