X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FInput%2FFGDeviceConfigurationMap.hxx;h=6a6aceae3306582e11c44266287ba201ff938689;hb=e794bb8e2575974cfa39cb0033ec8a66b7579093;hp=27a3a8a143d6904a43d6140d15361d0808cc2e29;hpb=a6db6d89ff41a619569e6433409e8bf62ff98499;p=flightgear.git diff --git a/src/Input/FGDeviceConfigurationMap.hxx b/src/Input/FGDeviceConfigurationMap.hxx index 27a3a8a14..6a6aceae3 100644 --- a/src/Input/FGDeviceConfigurationMap.hxx +++ b/src/Input/FGDeviceConfigurationMap.hxx @@ -30,17 +30,17 @@ #endif #include -#include #include -using std::map; -class FGDeviceConfigurationMap : public map { +class SGPath; + +class FGDeviceConfigurationMap : public std::map { public: FGDeviceConfigurationMap ( const char * relative_path, SGPropertyNode_ptr base, const char * childname ); virtual ~FGDeviceConfigurationMap(); private: - void scan_dir( SGPath & path, int *index); + void scan_dir(const SGPath & path, int *index); SGPropertyNode_ptr base; const char * childname; };