SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
httprequesthandler.h
Go to the documentation of this file.
1 
6 #ifndef HTTPREQUESTHANDLER_H
7 #define HTTPREQUESTHANDLER_H
8 
9 #include "httpglobal.h"
10 #include "httprequest.h"
11 #include "httpresponse.h"
12 
13 #include "export.h"
14 
15 namespace qtwebapp {
16 
29 class HTTPSERVER_API HttpRequestHandler : public QObject {
30  Q_OBJECT
31  Q_DISABLE_COPY(HttpRequestHandler)
32 public:
33 
38  HttpRequestHandler(QObject* parent=NULL);
39 
41  virtual ~HttpRequestHandler();
42 
49  virtual void service(HttpRequest& request, HttpResponse& response);
50 
51 };
52 
53 } // end of namespace
54 
55 #endif // HTTPREQUESTHANDLER_H
#define HTTPSERVER_API
Definition: export.h:88