1234567891011121314151617181920212223242526272829303132 |
- #ifndef LS_STD_FILE_PATH_MATCH_HPP
- #define LS_STD_FILE_PATH_MATCH_HPP
- #include "FilePathSeparator.hpp"
- namespace ls
- {
- namespace std
- {
- namespace io
- {
- struct FilePathSeparatorMatch
- {
- bool operator()(char _char) const
- {
- return _char == ls::std::io::FilePathSeparator::getWindowsFilePathSeparator() || _char == ls::std::io::FilePathSeparator::getUnixFilePathSeparator();
- }
- };
- }
- }
- }
- #endif
|