]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/sg_path.hxx
MSVC .NET 2003 fix
[simgear.git] / simgear / misc / sg_path.hxx
index 9b0e5939472d158e6df2e58f698ec39f6d969b5b..bdb45e01e74d78e8af654086990636e29cc08bb9 100644 (file)
 
 
 #include <simgear/compiler.h>
-
 #include STL_STRING
 
-SG_USING_STD(string);
-
+#include <simgear/math/sg_types.hxx>
 
-#ifdef macintosh
-#  define SG_PATH_SEP ':'
-#  define SG_BAD_PATH_SEP '/'
-#else
-#  define SG_PATH_SEP '/'
-#  define SG_BAD_PATH_SEP ':'
-#endif
+SG_USING_STD(string);
 
 
 /**
@@ -141,6 +133,12 @@ private:
 };
 
 
+/**
+ * Split a directory search path into a vector of individual paths
+ */
+string_list sgPathSplit( const string &search_path );
+
+
 #endif // _SG_PATH_HXX