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 HTTPServer by
Diff: HTTPRequestHandler.h
- Revision:
- 1:6b7472d5e9ee
- Child:
- 3:d6224049b3bf
diff -r 7a2421e63e74 -r 6b7472d5e9ee HTTPRequestHandler.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/HTTPRequestHandler.h Sun May 26 22:49:42 2013 +0000 @@ -0,0 +1,26 @@ +/* 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__ \ No newline at end of file