1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-19 22:28:35 -04:00

Created web API adapter for he main window

This commit is contained in:
f4exb
2017-11-18 19:34:47 +01:00
parent 9fe66f960c
commit 93d36b20a4
11 changed files with 153 additions and 7 deletions
+9 -3
View File
@@ -19,9 +19,13 @@
#ifndef SDRBASE_WEBAPI_WEBAPIADAPTERINTERFACE_H_
#define SDRBASE_WEBAPI_WEBAPIADAPTERINTERFACE_H_
#include "SWGInstanceSummaryResponse.h"
#include "SWGErrorResponse.h"
#include "SWGErrorResponse.h"
#include <QString>
namespace Swagger
{
class SWGInstanceSummaryResponse;
class SWGErrorResponse;
}
class WebAPIAdapterInterface
{
@@ -36,6 +40,8 @@ public:
Swagger::SWGInstanceSummaryResponse& response __attribute__((unused)),
Swagger::SWGErrorResponse& error __attribute__((unused)))
{ return 501; }
static QString instanceSummaryURL;
};