/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-08-15 * Changed: 2023-02-04 * * */ #ifndef FILE_PATH_SEPARATOR_HPP #define FILE_PATH_SEPARATOR_HPP #include #include namespace ls::std::io { class LS_STD_DYNAMIC_GOAL FilePathSeparator { public: FilePathSeparator(); ~FilePathSeparator(); static char get(); static char getUnixFilePathSeparator(); static char getWindowsFilePathSeparator(); }; } #endif