Hobrasoft httpd server
Embedded HTTP server for Qt and C++
httpd.h
Go to the documentation of this file.
1 
7 #ifndef _Httpd_H_
8 #define _Httpd_H_
9 
10 #include <QObject>
11 #include "httpserver.h"
12 
13 namespace HobrasoftHttpd {
14 class HttpServer;
15 class HttpConnection;
16 class HttpRequestHandler;
17 }
18 
19 namespace Example {
20 
24 namespace Httpd {
25 
32  Q_OBJECT
33  public:
34 
38  Httpd(QObject *parent);
39 
44 
45  private:
46 
47 };
48 
49 }
50 }
51 
52 #endif
General single-threaded, event-driven HTTP server.
Definition: httpserver.h:88
Namespace for Example.
Definition: application.h:11
virtual HobrasoftHttpd::HttpRequestHandler * requestHandler(HobrasoftHttpd::HttpConnection *)
Returns pointer to new instance of my own request handler HobrasoftHttpd::HttpRequestHandler.
Definition: httpd.cpp:16
Processes incoming requests.
Httpd(QObject *parent)
Constructor.
Definition: httpd.cpp:12
Own implementation of HTTP server.
Definition: httpd.h:31
Namespace of HTTP server.
One single connection to http server.