mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 21:54:55 -04:00
HttpServer: use settings structure as an object not a pointer
This commit is contained in:
@@ -49,11 +49,11 @@ class DECLSPEC StaticFileController : public HttpRequestHandler {
|
||||
Q_DISABLE_COPY(StaticFileController)
|
||||
public:
|
||||
|
||||
/** Constructor */
|
||||
/** Constructor with Qt settings*/
|
||||
StaticFileController(QSettings* settings, QObject* parent = NULL);
|
||||
|
||||
/** Constructor */
|
||||
StaticFileController(HttpDocrootSettings* settings, QObject* parent = NULL);
|
||||
/** Constructor with settings structure */
|
||||
StaticFileController(const HttpDocrootSettings& settings, QObject* parent = NULL);
|
||||
|
||||
/** Generates the response */
|
||||
void service(HttpRequest& request, HttpResponse& response);
|
||||
|
||||
Reference in New Issue
Block a user