X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInput%2FFGCommonInput.hxx;h=cc427d6392750a639b714b561ad06958018139a4;hb=8efe895355d6a72dd32ca0dfd484027ac55e776d;hp=575ab5402451a3dda8a3f2c1b3647980c04a41b9;hpb=a1a610f7d5458004b8fc6fd3ff88bcec660a26f4;p=flightgear.git diff --git a/src/Input/FGCommonInput.hxx b/src/Input/FGCommonInput.hxx index 575ab5402..cc427d639 100644 --- a/src/Input/FGCommonInput.hxx +++ b/src/Input/FGCommonInput.hxx @@ -27,11 +27,11 @@ #include #include -#include +#include -#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" @@ -39,14 +39,14 @@ class FGCommonInput { public: - typedef vector > binding_list_t; + typedef std::vector > 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