sdrangel/swagger/sdrangel/code/qt5/client/SWGDeviceListItem.h

88 lines
1.9 KiB
C++

/**
* SDRangel
* This is the web API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube
*
* OpenAPI spec version: 4.0.0
* Contact: f4exb06@gmail.com
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/*
* SWGDeviceListItem.h
*
* Summarized information about attached hardware device
*/
#ifndef SWGDeviceListItem_H_
#define SWGDeviceListItem_H_
#include <QJsonObject>
#include <QString>
#include "SWGObject.h"
namespace SWGSDRangel {
class SWGDeviceListItem: public SWGObject {
public:
SWGDeviceListItem();
SWGDeviceListItem(QString* json);
virtual ~SWGDeviceListItem();
void init();
void cleanup();
QString asJson ();
QJsonObject* asJsonObject();
void fromJsonObject(QJsonObject &json);
SWGDeviceListItem* fromJson(QString &jsonString);
QString* getDisplayedName();
void setDisplayedName(QString* displayed_name);
QString* getHwType();
void setHwType(QString* hw_type);
QString* getSerial();
void setSerial(QString* serial);
qint32 getSequence();
void setSequence(qint32 sequence);
qint32 getTx();
void setTx(qint32 tx);
qint32 getNbStreams();
void setNbStreams(qint32 nb_streams);
qint32 getStreamIndex();
void setStreamIndex(qint32 stream_index);
qint32 getDeviceSetIndex();
void setDeviceSetIndex(qint32 device_set_index);
qint32 getIndex();
void setIndex(qint32 index);
private:
QString* displayed_name;
QString* hw_type;
QString* serial;
qint32 sequence;
qint32 tx;
qint32 nb_streams;
qint32 stream_index;
qint32 device_set_index;
qint32 index;
};
}
#endif /* SWGDeviceListItem_H_ */