FilePathSeparatorMatch.hpp 576 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: 2021-04-23
  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. {
  14. struct FilePathSeparatorMatch
  15. {
  16. bool operator()(char _char) const
  17. {
  18. return _char == ls_std::FilePathSeparator::getWindowsFilePathSeparator() || _char == ls_std::FilePathSeparator::getUnixFilePathSeparator();
  19. }
  20. };
  21. }
  22. #endif