.

Dependencies:   SDHCFileSystem mbed

Revision:
19:610a71236b6e
Parent:
18:a4cf0547bfc2
Child:
20:153800633e28
--- a/FatFileSystem/FATDirHandle.h	Mon Dec 17 02:57:31 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-/* 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