SaltAPI  1.1
An API for the HTTPd / Zia by Salty Studio.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
IHTTPHandle.hpp
Go to the documentation of this file.
1 //
2 // Created by wery_a on 09/01/17.
3 //
4 
5 #ifndef API_V2_IHTTPHANDLE_HPP
6 #define API_V2_IHTTPHANDLE_HPP
7 
8 namespace HTTP {
9  class Request;
10 
11  class Response;
12 
13  class ProcessingList;
14 }
15 
16 namespace Module {
21  class IHTTPHandle {
22  public:
30  virtual bool Handle(HTTP::Request *req, HTTP::Response *res, HTTP::ProcessingList *pl) = 0;
31  };
32 }
33 
34 #endif //API_V2_IHTTPHANDLE_HPP
virtual bool Handle(HTTP::Request *req, HTTP::Response *res, HTTP::ProcessingList *pl)=0