123456789101112131415161718192021222324252627282930313233 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-15
- * Changed: 2024-09-13
- *
- * */
- #ifndef LS_STD_FILE_PATH_SEPARATOR_MATCH_HPP
- #define LS_STD_FILE_PATH_SEPARATOR_MATCH_HPP
- #include <ls-std/os/dynamic-goal.hpp>
- /*
- * @doc: class(name: 'FilePathSeparatorMatch', package: 'io')
- * @doc: io.FilePathSeparatorMatch.description('This class can filter file path separators.')
- * */
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL FilePathSeparatorMatch
- {
- public:
- FilePathSeparatorMatch();
- ~FilePathSeparatorMatch();
- bool operator()(char _char) const;
- };
- }
- #endif
|