Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
Diff: FileSystemLike.h
- Revision:
- 55:d722ed6a4237
- Parent:
- 54:71b101360fb9
- Child:
- 59:0883845fe643
--- a/FileSystemLike.h Tue Jan 08 12:46:36 2013 +0000 +++ b/FileSystemLike.h Wed Jan 16 12:56:34 2013 +0000 @@ -44,12 +44,12 @@ * @param name The name to use for the filesystem. */ FileSystemLike(const char *name); - + virtual ~FileSystemLike(); - + static DirHandle *opendir(); friend class BaseDirHandle; - + /** Opens a file from the filesystem * * @param filename The name of the file to open. @@ -101,7 +101,7 @@ * -1 on failure. */ virtual int mkdir(const char *name, mode_t mode) { return -1; } - + // TODO other filesystem functions (mkdir, rm, rn, ls etc) };