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.
ICE-Application/src/add-ons/ConfigFS/ConfigFs.h
- Committer:
- jmarkel44
- Date:
- 2017-01-24
- Revision:
- 1:b2e90cda7a5a
- Parent:
- 0:61364762ee0e
File content as of revision 1:b2e90cda7a5a:
#ifndef CONFIGFS_H
#define CONFIGFS_H
#include <vector>
#include <map>
#include <string>
class ConfigFs
{
public:
bool saveUserFile(const char *FileName, void *file_buf, int file_size);
bool readUserFile(const char *FileName, void *file_buf, int file_size);
bool deleteUserFile(const char *filename);
std::vector<std::string> listUserFiles();
};
#endif