1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 09:25:07 -04:00

Single DeviceAPI: REST API fixes

This commit is contained in:
f4exb
2019-05-09 01:12:40 +02:00
parent 89e53cf179
commit 029e559824
14 changed files with 339 additions and 215 deletions
+6 -6
View File
@@ -93,11 +93,11 @@ public:
* returns the Http status code (default 501: not implemented)
*/
virtual int instanceDevices(
bool tx,
int direction,
SWGSDRangel::SWGInstanceDevicesResponse& response,
SWGSDRangel::SWGErrorResponse& error)
{
(void) tx;
(void) direction;
(void) response;
error.init();
*error.getMessage() = QString("Function not implemented");
@@ -109,11 +109,11 @@ public:
* returns the Http status code (default 501: not implemented)
*/
virtual int instanceChannels(
bool tx,
int direction,
SWGSDRangel::SWGInstanceChannelsResponse& response,
SWGSDRangel::SWGErrorResponse& error)
{
(void) tx;
(void) direction;
(void) response;
error.init();
*error.getMessage() = QString("Function not implemented");
@@ -437,11 +437,11 @@ public:
* returns the Http status code (default 501: not implemented)
*/
virtual int instanceDeviceSetPost(
bool tx,
int direction,
SWGSDRangel::SWGSuccessResponse& response,
SWGSDRangel::SWGErrorResponse& error)
{
(void) tx;
(void) direction;
(void) response;
error.init();
*error.getMessage() = QString("Function not implemented");