FilePathSeparatorMatch.hpp 570 B

1234567891011121314151617181920212223
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-15
  6. * Changed: 2020-11-06
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_PATH_MATCH_HPP
  10. #define LS_STD_FILE_PATH_MATCH_HPP
  11. #include "FilePathSeparator.hpp"
  12. namespace ls_std {
  13. struct FilePathSeparatorMatch {
  14. bool operator()(char _char) const {
  15. return _char == ls_std::FilePathSeparator::getWindowsFilePathSeparator() || _char == ls_std::FilePathSeparator::getUnixFilePathSeparator();
  16. }
  17. };
  18. }
  19. #endif