This commit is contained in:
dockes 2009-11-04 13:43:04 +00:00
parent 9758fd4210
commit 058aebba6c

View File

@ -39,6 +39,9 @@ struct stat;
*/
class FsTreeWalker {
public:
// Flags for call to processone(). FtwDirEnter is used when
// entering a directory. FtwDirReturn is used when returning to it
// after processing a subdirectory.
enum CbFlag {FtwRegular, FtwDirEnter, FtwDirReturn};
enum Status {FtwOk=0, FtwError=1, FtwStop=2,
FtwStatAll = FtwError|FtwStop};