FilePathSeparatorMatch.hpp 764 B

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