1st Released

Dependencies:   MbedJSONValue WIZnetInterface mbed

Fork of WIZwiki-REST by Lawrence Lee

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RequestHandler.h Source File

RequestHandler.h

00001 #ifndef __REQUESTHANDLER_H_
00002 #define __REQUESTHANDLER_H_
00003 
00004 class RequestHandler
00005 {
00006     public :
00007         
00008         virtual void handle(char* rest_uri, char* reply) = 0;
00009 };
00010 
00011 class GetRequestHandler : public RequestHandler
00012 {
00013     public :
00014     
00015         virtual void handle(char* rest_uri, char* reply);
00016 };
00017 
00018 class PutRequestHandler : public RequestHandler
00019 {
00020     public :
00021         
00022         virtual void handle(char* rest_uri, char* reply);
00023 
00024 };
00025 
00026 
00027 class DeleteRequestHandler : public RequestHandler
00028 {
00029     public :
00030             
00031         virtual void handle(char* rest_uri, char* reply);
00032 
00033 };
00034 #endif