FilePathSeparatorMatch.hpp 621 B

1234567891011121314151617181920212223242526272829303132
  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-09
  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. * */
  15. namespace ls::std::io
  16. {
  17. class LS_STD_DYNAMIC_GOAL FilePathSeparatorMatch
  18. {
  19. public:
  20. FilePathSeparatorMatch();
  21. ~FilePathSeparatorMatch();
  22. bool operator()(char _char) const;
  23. };
  24. }
  25. #endif