Changes to allow hardware camera trigger

Dependencies:   mbed

Fork of GPS_Incremental by james kain

FatFileSystem/FATDirHandle.h

Committer:
dannyman939
Date:
2013-04-18
Revision:
10:078891935385
Parent:
0:c746ee34feae

File content as of revision 10:078891935385:

/* mbed Microcontroller Library - FATDirHandle
 * Copyright (c) 2008, sford
 */

#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