12345678910111213141516171819202122232425262728 |
- #ifndef LS_STD_FILE_PATH_MATCH_HPP
- #define LS_STD_FILE_PATH_MATCH_HPP
- #include <ls-std/os/dynamic-goal.hpp>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL FilePathSeparatorMatch
- {
- public:
- FilePathSeparatorMatch();
- ~FilePathSeparatorMatch();
- bool operator()(char _char) const;
- };
- }
- #endif
|