1234567891011121314151617181920212223242526 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-15
- * Changed: 2021-04-23
- *
- * */
- #ifndef LS_STD_FILE_PATH_MATCH_HPP
- #define LS_STD_FILE_PATH_MATCH_HPP
- #include "FilePathSeparator.hpp"
- namespace ls_std
- {
- struct FilePathSeparatorMatch
- {
- bool operator()(char _char) const
- {
- return _char == ls_std::FilePathSeparator::getWindowsFilePathSeparator() || _char == ls_std::FilePathSeparator::getUnixFilePathSeparator();
- }
- };
- }
- #endif
|