y ishida / Mbed 2 deprecated RESTServer_team4

Dependencies:   NySNICInterface mbed-rtos mbed

Fork of RESTServerSample by KDDI Fx0 hackathon

Revision:
5:70c9f6045f2d
Parent:
4:99a67256b765
Child:
6:d148c8a213ef
diff -r 99a67256b765 -r 70c9f6045f2d RequestHandler.h
--- 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
-