/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-08-15 * Changed: 2026-06-23 * * */ #ifndef LS_STD_FILE_PATH_SEPARATOR_HPP #define LS_STD_FILE_PATH_SEPARATOR_HPP #include #include /* * @doc: class(name: 'FilePathSeparator', package: 'io') * @doc: io.FilePathSeparator.description('This class represents the OS specific separator withing file paths on either Windows- or Unix-like operating systems.') * */ namespace ls::standard::io { class LS_STD_DYNAMIC_GOAL FilePathSeparator { public: FilePathSeparator(); ~FilePathSeparator(); [[nodiscard]] static char get(); [[nodiscard]] static char getUnixFilePathSeparator(); [[nodiscard]] static char getWindowsFilePathSeparator(); }; } #endif