FilePathSeparatorMatch.hpp 715 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-15
  6. * Changed: 2024-09-13
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_PATH_SEPARATOR_MATCH_HPP
  10. #define LS_STD_FILE_PATH_SEPARATOR_MATCH_HPP
  11. #include <ls-std/os/dynamic-goal.hpp>
  12. /*
  13. * @doc: class(name: 'FilePathSeparatorMatch', package: 'io')
  14. * @doc: io.FilePathSeparatorMatch.description('This class can filter file path separators.')
  15. * */
  16. namespace ls::std::io
  17. {
  18. class LS_STD_DYNAMIC_GOAL FilePathSeparatorMatch
  19. {
  20. public:
  21. FilePathSeparatorMatch();
  22. ~FilePathSeparatorMatch();
  23. bool operator()(char _char) const;
  24. };
  25. }
  26. #endif