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 libMiMic by
cpp/ModLocalFileSystem.h
- Committer:
- nyatla
- Date:
- 2013-04-09
- Revision:
- 7:2b33a8d84eb3
- Child:
- 8:b9ed86e156dd
File content as of revision 7:2b33a8d84eb3:
#pragma once
////////////////////////////////////////////////////////////////////////////////
// ModRomFiles.h
////////////////////////////////////////////////////////////////////////////////
#include "NyLPC_net.h"
#include "ModBaseClass.h"
namespace MiMic
{
class HttpdConnection;
/**
* This class is httpd module.
* The class provide files on mbed LocalFile System.
*/
class ModLocalFileSystem:ModBaseClass
{
public:
ModLocalFileSystem(const char* i_path);
ModLocalFileSystem();
virtual ~ModLocalFileSystem();
void setParam(const char* i_path);
bool execute(HttpdConnection& i_connection);
};
}
