26 lines
354 B
C++
26 lines
354 B
C++
#include "HttpServer.h"
|
|
|
|
|
|
CHttpServer::CHttpServer()
|
|
{
|
|
mHttpServer = new QHttpServer;
|
|
mHttpServer->route("/", []()
|
|
{
|
|
qDebug("Test");
|
|
|
|
return "Ja Mon CB!!!!";
|
|
});
|
|
|
|
|
|
const auto port = mHttpServer->listen(QHostAddress::Any,8080);
|
|
|
|
qDebug("Server Opened");
|
|
|
|
|
|
}
|
|
|
|
CHttpServer::~CHttpServer()
|
|
{
|
|
delete mHttpServer;
|
|
}
|