]> git.mxchange.org Git - flightgear.git/blobdiff - src/Input/FGCommonInput.hxx
Added several include files, thanks to Roland Haeder
[flightgear.git] / src / Input / FGCommonInput.hxx
index 575ab5402451a3dda8a3f2c1b3647980c04a41b9..cc427d6392750a639b714b561ad06958018139a4 100644 (file)
 
 #include <vector>
 #include <simgear/structure/SGBinding.hxx>
-#include <plib/ul.h>
+#include <simgear/compiler.h>
 
-#if defined( UL_WIN32 )
+#if defined( SG_WINDOWS )
 #define TGT_PLATFORM   "windows"
-#elif defined ( UL_MAC_OSX )
+#elif defined ( SG_MAC )
 #define TGT_PLATFORM    "mac"
 #else
 #define TGT_PLATFORM   "unix"
 
 class FGCommonInput {
 public:
-  typedef vector<SGSharedPtr<SGBinding> > binding_list_t;
+  typedef std::vector<SGSharedPtr<SGBinding> > binding_list_t;
 
   /*
    read all "binding" nodes directly under the specified base node and fill the 
    vector of SGBinding supplied in binding_list. Reads all the mod-xxx bindings and 
    add the corresponding SGBindings.
    */
-  static void read_bindings (const SGPropertyNode * base, binding_list_t * binding_list, int modifiers, const string & module );
+  static void read_bindings (const SGPropertyNode * base, binding_list_t * binding_list, int modifiers, const std::string & module );
 };
 
 #endif