12345678910111213141516171819202122232425262728293031 |
- #ifndef FILE_PATH_SEPARATOR_HPP
- #define FILE_PATH_SEPARATOR_HPP
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL FilePathSeparator
- {
- public:
- FilePathSeparator();
- ~FilePathSeparator();
- [[nodiscard]] static char get();
- [[nodiscard]] static char getUnixFilePathSeparator();
- [[nodiscard]] static char getWindowsFilePathSeparator();
- };
- }
- #endif
|