1234567891011121314151617181920212223242526 |
- #ifndef LS_STD_FILE_PATH_MATCH_HPP
- #define LS_STD_FILE_PATH_MATCH_HPP
- namespace ls::std::io
- {
- class FilePathSeparatorMatch
- {
- public:
- FilePathSeparatorMatch();
- ~FilePathSeparatorMatch();
- bool operator()(char _char) const;
- };
- }
- #endif
|