2 * Copyright 2017, Chế Vũ Gia Hy, cvghy116@gmail.com.
3 * Copyright 2011, Jérôme Duval, korli@users.berlios.de.
4 * This file may be used under the terms of the MIT License.
6 #ifndef DIRECTORYITERATOR_H
7 #define DIRECTORYITERATOR_H
14 class DirectoryIterator
{
16 DirectoryIterator(Inode
* inode
);
21 status_t
GetNext(char* name
, size_t* _nameLength
, ino_t
* _id
);
22 status_t
Lookup(const char* name
, size_t nameLength
, ino_t
* _id
);
27 TreeIterator
* fIterator
;
31 #endif // DIRECTORYITERATOR_H