2021-05-26 04:15:57 -04:00

17 lines
206 B
C++

#ifndef HTTPSERVER_H
#define HTTPSERVER_H
#include <QtHttpServer/QHttpServer>
class CHttpServer
{
public:
QHttpServer *mHttpServer;
CHttpServer();
~CHttpServer();
};
#endif // HTTPSERVER_H