SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
SWGPlutoSdrOutputReport.h
Go to the documentation of this file.
1 
13 /*
14  * SWGPlutoSdrOutputReport.h
15  *
16  * PlutoSDR
17  */
18 
19 #ifndef SWGPlutoSdrOutputReport_H_
20 #define SWGPlutoSdrOutputReport_H_
21 
22 #include <QJsonObject>
23 
24 
25 #include <QString>
26 
27 #include "SWGObject.h"
28 #include "export.h"
29 
30 namespace SWGSDRangel {
31 
33 public:
35  SWGPlutoSdrOutputReport(QString* json);
36  virtual ~SWGPlutoSdrOutputReport();
37  void init();
38  void cleanup();
39 
40  virtual QString asJson () override;
41  virtual QJsonObject* asJsonObject() override;
42  virtual void fromJsonObject(QJsonObject &json) override;
43  virtual SWGPlutoSdrOutputReport* fromJson(QString &jsonString) override;
44 
45  qint32 getDacRate();
46  void setDacRate(qint32 dac_rate);
47 
48  QString* getRssi();
49  void setRssi(QString* rssi);
50 
51  float getTemperature();
52  void setTemperature(float temperature);
53 
54 
55  virtual bool isSet() override;
56 
57 private:
58  qint32 dac_rate;
60 
61  QString* rssi;
63 
64  float temperature;
66 
67 };
68 
69 }
70 
71 #endif /* SWGPlutoSdrOutputReport_H_ */
#define SWG_API
Definition: export.h:124