Unedited
Dependents: Digital_Lock_with_audio
Fork of FATFileSystem by
FATDirHandle.h
- Committer:
- mbed_unsupported
- Date:
- 2012-05-08
- Revision:
- 0:97df4125f18d
File content as of revision 0:97df4125f18d:
/* Copyright 2008 ARM Limited. All rights reserved. */ #ifndef MBED_FATDIRHANDLE_H #define MBED_FATDIRHANDLE_H #include "DirHandle.h" #include "ff.h" namespace mbed { class FATDirHandle : public DirHandle { public: FATDirHandle(const FATFS_DIR &the_dir); virtual int closedir(); virtual struct dirent *readdir(); virtual void rewinddir(); virtual off_t telldir(); virtual void seekdir(off_t location); private: FATFS_DIR dir; struct dirent cur_entry; }; } #endif