Rename Startup class to YACReaderHttpServer

This commit is contained in:
Luis Ángel San Martín
2022-10-13 23:24:35 +02:00
parent 59639ad68c
commit be0c0ff341
9 changed files with 44 additions and 54 deletions

View File

@ -0,0 +1,26 @@
#ifndef YACREADER_HTTP_SERVER_H
#define YACREADER_HTTP_SERVER_H
#include <QString>
namespace stefanfrings {
class HttpListener;
}
class YACReaderHttpServer
{
private:
stefanfrings::HttpListener *listener;
public:
YACReaderHttpServer();
void start(quint16 port = 0);
void stop();
QString getPort();
protected:
};
#endif // YACREADER_HTTP_SERVER_H