1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef BASE_FILES_DIR_READER_FALLBACK_H_
- #define BASE_FILES_DIR_READER_FALLBACK_H_
- namespace base {
- class DirReaderFallback {
- public:
-
-
- explicit DirReaderFallback(const char* directory_path) {}
-
-
- bool IsValid() const { return false; }
-
- bool Next() { return false; }
-
- const char* name() { return nullptr;}
-
- int fd() const { return -1; }
-
- static bool IsFallback() { return true; }
- };
- }
- #endif
|