|
CeresEngine 0.2.0
A game development framework
|
The file file visitor interface. More...
#include <CeresEngine/Foundation/IO/FileHandle.hpp>
Public Member Functions | |
| FileVisitor () | |
| virtual | ~FileVisitor () |
Protected Member Functions | |
| virtual bool | onFileEntry (const FileHandle &handle) |
| Called for each file entry visited (files and directories). | |
| virtual void | onFile (const FileHandle &handle) |
| Called for on each file visited. | |
| virtual bool | onDirectory (const FileHandle &handle) |
| Called for each visited directory. | |
Friends | |
| class | FileHandle |
The file file visitor interface.
| CeresEngine::FileVisitor::FileVisitor | ( | ) |
|
virtual |
|
protectedvirtual |
Called for each visited directory.
| handle | A handle to the visited directory. |
true if the subdirectory should be traversed, else false. Reimplemented in CeresEngine::FunctionalFileVisitor.
|
protectedvirtual |
Called for on each file visited.
| handle | A Handle to visited file. |
Reimplemented in CeresEngine::FunctionalFileVisitor.
|
protectedvirtual |
Called for each file entry visited (files and directories).
| handle | A handle to the visited file or directory. |
true if the subdirectory should be traversed, else false. Reimplemented in CeresEngine::FunctionalFileVisitor.
|
friend |