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.
Dependents: RPC_HTTP RPC_HTTP_WIZnetInterface RPC_HTTP rpc_over_http_TL_interrupter_gatePJ
Fork of HTTPServer by
HTTPRequestHandler.h
- Committer:
- leihen
- Date:
- 2013-05-26
- Revision:
- 1:6b7472d5e9ee
- Child:
- 3:d6224049b3bf
File content as of revision 1:6b7472d5e9ee:
/* HTTPRequestHandler.h */
#ifndef __HTTPREQUESTHANDLER_H__
#define __HTTPREQUESTHANDLER_H__
#include "mbed.h"
#include "HTTPConnection.h"
class HTTPRequestHandler
{
public:
/**
public constructor
*/
HTTPRequestHandler();
/**
destructor
*/
~HTTPRequestHandler();
void HandleRequest(HTTPMessage& );
};
#endif // __HTTPREQUESTHANDLER_H__
