17 lines
206 B
C++
17 lines
206 B
C++
#ifndef HTTPSERVER_H
|
|
#define HTTPSERVER_H
|
|
|
|
#include <QtHttpServer/QHttpServer>
|
|
|
|
class CHttpServer
|
|
{
|
|
public:
|
|
|
|
QHttpServer *mHttpServer;
|
|
|
|
CHttpServer();
|
|
~CHttpServer();
|
|
};
|
|
|
|
#endif // HTTPSERVER_H
|