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.
Dependencies: NySNICInterface mbed-rtos mbed
Fork of RESTServerSample by
Diff: RequestHandler.h
- Revision:
- 5:70c9f6045f2d
- Parent:
- 4:99a67256b765
- Child:
- 6:d148c8a213ef
--- a/RequestHandler.h Sun Feb 15 02:55:36 2015 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,45 +0,0 @@
-#ifndef REQUEST_HANDLER
-#define REQUEST_HANDLER
-
-#include "RPCObject.h"
-
-
-
-class RequestHandler
-{
- public :
-
- virtual int handle(RPCObject& cmd, char* reply) = 0;
-
- protected :
-};
-
-class GetRequestHandler : public RequestHandler
-{
- public :
-
- virtual int handle(RPCObject& cmd, char* reply);
-
-};
-
-class PostRequestHandler : public RequestHandler
-{
- public :
-
- virtual int handle(RPCObject& cmd, char* reply);
-
-};
-
-
-class DeleteRequestHandler : public RequestHandler
-{
- public :
-
- virtual int handle(RPCObject& cmd, char* reply);
-
-};
-
-
-
-#endif
-

