FilePathSeparatorMatch.hpp 470 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-15
  6. * Changed: 2023-02-05
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_PATH_MATCH_HPP
  10. #define LS_STD_FILE_PATH_MATCH_HPP
  11. namespace ls::std::io
  12. {
  13. class FilePathSeparatorMatch
  14. {
  15. public:
  16. FilePathSeparatorMatch();
  17. ~FilePathSeparatorMatch();
  18. bool operator()(char _char) const;
  19. };
  20. }
  21. #endif