mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
ebbb6b9440
* Update Hyperion.h * Update ImageProcessorFactory.h * Update ProtoConnection.h * Update WebConfig.h * Update CMakeLists.txt * Update Hyperion.cpp * Update CMakeLists.txt * Update CMakeLists.txt * Update CgiHandler.cpp * Update CgiHandler.h * Update WebConfig.cpp * Update CMakeLists.txt * Update hyperion-remote.cpp * Update JsonConnection.cpp * Update JsonConnection.h * Update hyperiond.cpp * Update hyperiond.h * Delete JsonFactory.h * Delete JsonSchemaChecker.h * Delete JsonSchemaChecker.cpp * Update WebConfig.cpp
34 lines
584 B
C++
34 lines
584 B
C++
#ifndef WEBCONFIG_H
|
|
#define WEBCONFIG_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <string>
|
|
#include <hyperion/Hyperion.h>
|
|
|
|
class StaticFileServing;
|
|
|
|
class WebConfig : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WebConfig (QObject * parent = NULL);
|
|
|
|
virtual ~WebConfig (void);
|
|
|
|
void start();
|
|
void stop();
|
|
|
|
private:
|
|
Hyperion* _hyperion;
|
|
QString _baseUrl;
|
|
quint16 _port;
|
|
StaticFileServing* _server;
|
|
|
|
const QString WEBCONFIG_DEFAULT_PATH = ":/webconfig";
|
|
const quint16 WEBCONFIG_DEFAULT_PORT = 8099;
|
|
};
|
|
|
|
#endif // WEBCONFIG_H
|
|
|