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.
SWGLocalInputReport.h
Go to the documentation of this file.
1 
13 /*
14  * SWGLocalInputReport.h
15  *
16  * LocalInput
17  */
18 
19 #ifndef SWGLocalInputReport_H_
20 #define SWGLocalInputReport_H_
21 
22 #include <QJsonObject>
23 
24 
25 
26 #include "SWGObject.h"
27 #include "export.h"
28 
29 namespace SWGSDRangel {
30 
32 public:
34  SWGLocalInputReport(QString* json);
35  virtual ~SWGLocalInputReport();
36  void init();
37  void cleanup();
38 
39  virtual QString asJson () override;
40  virtual QJsonObject* asJsonObject() override;
41  virtual void fromJsonObject(QJsonObject &json) override;
42  virtual SWGLocalInputReport* fromJson(QString &jsonString) override;
43 
44  qint32 getCenterFrequency();
45  void setCenterFrequency(qint32 center_frequency);
46 
47  qint32 getSampleRate();
48  void setSampleRate(qint32 sample_rate);
49 
50 
51  virtual bool isSet() override;
52 
53 private:
56 
57  qint32 sample_rate;
59 
60 };
61 
62 }
63 
64 #endif /* SWGLocalInputReport_H_ */
#define SWG_API
Definition: export.h:124