mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
88fbc4dfde
* make hyperion to singelton. remove arguments for config and hyperion - both are gettable via Hyperion::getInstance * refactor hyperiond * remove qt4 comapt make zeroconf mandatory refactor hyperiond * xbmcchecker is now a singleton * cleanup in hyperiond zeroconf switchable between static and shared linking * fix xbmcchecker
35 lines
644 B
C++
35 lines
644 B
C++
#ifndef WEBCONFIG_H
|
|
#define WEBCONFIG_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <string>
|
|
#include <utils/jsonschema/JsonFactory.h>
|
|
#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 std::string WEBCONFIG_DEFAULT_PATH = "/usr/share/hyperion/webconfig";
|
|
const quint16 WEBCONFIG_DEFAULT_PORT = 8099;
|
|
};
|
|
|
|
#endif // WEBCONFIG_H
|
|
|