| 25 | class LocalFileIterator : public FileIterator { |
| 26 | public: |
| 27 | explicit LocalFileIterator(DIR* dp, const std::string& dir, |
| 28 | const std::string& pattern, |
| 29 | int include_types, int exclude_types) |
| 30 | : m_dp(dp, closedir), m_dir(dir), m_pattern(pattern), |
| 31 | m_include_types(include_types), m_exclude_types(exclude_types) {} |
| 32 | ~LocalFileIterator() {} |
| 33 | |
| 34 | bool GetNext(FileEntry* entry) { |
nothing calls this directly
no outgoing calls
no test coverage detected