12 #ifndef OGLPLUS_UTILS_FILESYSTEM_1102101236_HPP
13 #define OGLPLUS_UTILS_FILESYSTEM_1102101236_HPP
15 #include <oglplus/config/compiler.hpp>
22 inline std::string FilesysPathSep(
void)
24 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
25 return std::string(
"\\");
27 return std::string(
"/");
31 inline std::string FilesysPathParDir(
void)
33 return std::string(
"..");
36 inline std::string FilesysPathCurDir(
void)
38 return std::string(
".");
41 inline bool IsFilesysPathSep(
const char* str,
size_t size)
45 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)