Patrick Williams | 3667cf3 | 2015-10-20 22:39:11 -0500 | [diff] [blame^] | 1 | #ifndef __DIRECTORY_H |
2 | #define __DIRECTORY_H | ||||
3 | |||||
4 | #include <string> | ||||
5 | #include <dirent.h> | ||||
6 | |||||
7 | class Directory | ||||
8 | { | ||||
9 | public: | ||||
10 | explicit Directory(const std::string& path); | ||||
11 | ~Directory(); | ||||
12 | |||||
13 | bool next(std::string& name); | ||||
14 | |||||
15 | private: | ||||
16 | dirent* entry; | ||||
17 | DIR* dirp; | ||||
18 | }; | ||||
19 | |||||
20 | #endif |