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.
Public Member Functions | Private Attributes | List of all members
SWGSDRangel::SWGRemoteSourceReport Class Reference

#include <SWGRemoteSourceReport.h>

+ Inheritance diagram for SWGSDRangel::SWGRemoteSourceReport:
+ Collaboration diagram for SWGSDRangel::SWGRemoteSourceReport:

Public Member Functions

 SWGRemoteSourceReport ()
 
 SWGRemoteSourceReport (QString *json)
 
virtual ~SWGRemoteSourceReport ()
 
void init ()
 
void cleanup ()
 
virtual QString asJson () override
 
virtual QJsonObject * asJsonObject () override
 
virtual void fromJsonObject (QJsonObject &json) override
 
virtual SWGRemoteSourceReportfromJson (QString &jsonString) override
 
qint32 getQueueLength ()
 
void setQueueLength (qint32 queue_length)
 
qint32 getQueueSize ()
 
void setQueueSize (qint32 queue_size)
 
qint32 getSamplesCount ()
 
void setSamplesCount (qint32 samples_count)
 
qint32 getCorrectableErrorsCount ()
 
void setCorrectableErrorsCount (qint32 correctable_errors_count)
 
qint32 getUncorrectableErrorsCount ()
 
void setUncorrectableErrorsCount (qint32 uncorrectable_errors_count)
 
qint32 getTvSec ()
 
void setTvSec (qint32 tv_sec)
 
qint32 getTvUSec ()
 
void setTvUSec (qint32 tv_u_sec)
 
qint32 getNbOriginalBlocks ()
 
void setNbOriginalBlocks (qint32 nb_original_blocks)
 
qint32 getNbFecBlocks ()
 
void setNbFecBlocks (qint32 nb_fec_blocks)
 
qint32 getCenterFreq ()
 
void setCenterFreq (qint32 center_freq)
 
qint32 getSampleRate ()
 
void setSampleRate (qint32 sample_rate)
 
qint32 getDeviceCenterFreq ()
 
void setDeviceCenterFreq (qint32 device_center_freq)
 
qint32 getDeviceSampleRate ()
 
void setDeviceSampleRate (qint32 device_sample_rate)
 
virtual bool isSet () override
 
- Public Member Functions inherited from SWGSDRangel::SWGObject
virtual ~SWGObject ()
 

Private Attributes

qint32 queue_length
 
bool m_queue_length_isSet
 
qint32 queue_size
 
bool m_queue_size_isSet
 
qint32 samples_count
 
bool m_samples_count_isSet
 
qint32 correctable_errors_count
 
bool m_correctable_errors_count_isSet
 
qint32 uncorrectable_errors_count
 
bool m_uncorrectable_errors_count_isSet
 
qint32 tv_sec
 
bool m_tv_sec_isSet
 
qint32 tv_u_sec
 
bool m_tv_u_sec_isSet
 
qint32 nb_original_blocks
 
bool m_nb_original_blocks_isSet
 
qint32 nb_fec_blocks
 
bool m_nb_fec_blocks_isSet
 
qint32 center_freq
 
bool m_center_freq_isSet
 
qint32 sample_rate
 
bool m_sample_rate_isSet
 
qint32 device_center_freq
 
bool m_device_center_freq_isSet
 
qint32 device_sample_rate
 
bool m_device_sample_rate_isSet
 

Detailed Description

Definition at line 31 of file SWGRemoteSourceReport.h.

Constructor & Destructor Documentation

◆ SWGRemoteSourceReport() [1/2]

SWGSDRangel::SWGRemoteSourceReport::SWGRemoteSourceReport ( )

Definition at line 30 of file SWGRemoteSourceReport.cpp.

References center_freq, correctable_errors_count, device_center_freq, device_sample_rate, m_center_freq_isSet, m_correctable_errors_count_isSet, m_device_center_freq_isSet, m_device_sample_rate_isSet, m_nb_fec_blocks_isSet, m_nb_original_blocks_isSet, m_queue_length_isSet, m_queue_size_isSet, m_sample_rate_isSet, m_samples_count_isSet, m_tv_sec_isSet, m_tv_u_sec_isSet, m_uncorrectable_errors_count_isSet, nb_fec_blocks, nb_original_blocks, queue_length, queue_size, sample_rate, samples_count, tv_sec, tv_u_sec, and uncorrectable_errors_count.

30  {
31  queue_length = 0;
32  m_queue_length_isSet = false;
33  queue_size = 0;
34  m_queue_size_isSet = false;
35  samples_count = 0;
36  m_samples_count_isSet = false;
41  tv_sec = 0;
42  m_tv_sec_isSet = false;
43  tv_u_sec = 0;
44  m_tv_u_sec_isSet = false;
47  nb_fec_blocks = 0;
48  m_nb_fec_blocks_isSet = false;
49  center_freq = 0;
50  m_center_freq_isSet = false;
51  sample_rate = 0;
52  m_sample_rate_isSet = false;
57 }

◆ SWGRemoteSourceReport() [2/2]

SWGSDRangel::SWGRemoteSourceReport::SWGRemoteSourceReport ( QString *  json)

Definition at line 25 of file SWGRemoteSourceReport.cpp.

References fromJson(), and init().

25  {
26  init();
27  this->fromJson(*json);
28 }
virtual SWGRemoteSourceReport * fromJson(QString &jsonString) override
+ Here is the call graph for this function:

◆ ~SWGRemoteSourceReport()

SWGSDRangel::SWGRemoteSourceReport::~SWGRemoteSourceReport ( )
virtual

Definition at line 59 of file SWGRemoteSourceReport.cpp.

References cleanup().

59  {
60  this->cleanup();
61 }
+ Here is the call graph for this function:

Member Function Documentation

◆ asJson()

QString SWGSDRangel::SWGRemoteSourceReport::asJson ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 150 of file SWGRemoteSourceReport.cpp.

References asJsonObject().

151 {
152  QJsonObject* obj = this->asJsonObject();
153 
154  QJsonDocument doc(*obj);
155  QByteArray bytes = doc.toJson();
156  delete obj;
157  return QString(bytes);
158 }
virtual QJsonObject * asJsonObject() override
+ Here is the call graph for this function:

◆ asJsonObject()

QJsonObject * SWGSDRangel::SWGRemoteSourceReport::asJsonObject ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 161 of file SWGRemoteSourceReport.cpp.

References center_freq, correctable_errors_count, device_center_freq, device_sample_rate, m_center_freq_isSet, m_correctable_errors_count_isSet, m_device_center_freq_isSet, m_device_sample_rate_isSet, m_nb_fec_blocks_isSet, m_nb_original_blocks_isSet, m_queue_length_isSet, m_queue_size_isSet, m_sample_rate_isSet, m_samples_count_isSet, m_tv_sec_isSet, m_tv_u_sec_isSet, m_uncorrectable_errors_count_isSet, nb_fec_blocks, nb_original_blocks, queue_length, queue_size, sample_rate, samples_count, tv_sec, tv_u_sec, and uncorrectable_errors_count.

Referenced by asJson().

161  {
162  QJsonObject* obj = new QJsonObject();
164  obj->insert("queueLength", QJsonValue(queue_length));
165  }
166  if(m_queue_size_isSet){
167  obj->insert("queueSize", QJsonValue(queue_size));
168  }
170  obj->insert("samplesCount", QJsonValue(samples_count));
171  }
173  obj->insert("correctableErrorsCount", QJsonValue(correctable_errors_count));
174  }
176  obj->insert("uncorrectableErrorsCount", QJsonValue(uncorrectable_errors_count));
177  }
178  if(m_tv_sec_isSet){
179  obj->insert("tvSec", QJsonValue(tv_sec));
180  }
181  if(m_tv_u_sec_isSet){
182  obj->insert("tvUSec", QJsonValue(tv_u_sec));
183  }
185  obj->insert("nbOriginalBlocks", QJsonValue(nb_original_blocks));
186  }
188  obj->insert("nbFECBlocks", QJsonValue(nb_fec_blocks));
189  }
191  obj->insert("centerFreq", QJsonValue(center_freq));
192  }
194  obj->insert("sampleRate", QJsonValue(sample_rate));
195  }
197  obj->insert("deviceCenterFreq", QJsonValue(device_center_freq));
198  }
200  obj->insert("deviceSampleRate", QJsonValue(device_sample_rate));
201  }
202 
203  return obj;
204 }
+ Here is the caller graph for this function:

◆ cleanup()

void SWGSDRangel::SWGRemoteSourceReport::cleanup ( )

Definition at line 94 of file SWGRemoteSourceReport.cpp.

Referenced by ~SWGRemoteSourceReport().

94  {
95 
96 
97 
98 
99 
100 
101 
102 
103 
104 
105 
106 
107 
108 }
+ Here is the caller graph for this function:

◆ fromJson()

SWGRemoteSourceReport * SWGSDRangel::SWGRemoteSourceReport::fromJson ( QString &  jsonString)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 111 of file SWGRemoteSourceReport.cpp.

References fromJsonObject().

Referenced by SWGRemoteSourceReport().

111  {
112  QByteArray array (json.toStdString().c_str());
113  QJsonDocument doc = QJsonDocument::fromJson(array);
114  QJsonObject jsonObject = doc.object();
115  this->fromJsonObject(jsonObject);
116  return this;
117 }
virtual void fromJsonObject(QJsonObject &json) override
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fromJsonObject()

void SWGSDRangel::SWGRemoteSourceReport::fromJsonObject ( QJsonObject &  json)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 120 of file SWGRemoteSourceReport.cpp.

References center_freq, correctable_errors_count, device_center_freq, device_sample_rate, nb_fec_blocks, nb_original_blocks, queue_length, queue_size, sample_rate, samples_count, SWGSDRangel::setValue(), tv_sec, tv_u_sec, and uncorrectable_errors_count.

Referenced by fromJson().

120  {
121  ::SWGSDRangel::setValue(&queue_length, pJson["queueLength"], "qint32", "");
122 
123  ::SWGSDRangel::setValue(&queue_size, pJson["queueSize"], "qint32", "");
124 
125  ::SWGSDRangel::setValue(&samples_count, pJson["samplesCount"], "qint32", "");
126 
127  ::SWGSDRangel::setValue(&correctable_errors_count, pJson["correctableErrorsCount"], "qint32", "");
128 
129  ::SWGSDRangel::setValue(&uncorrectable_errors_count, pJson["uncorrectableErrorsCount"], "qint32", "");
130 
131  ::SWGSDRangel::setValue(&tv_sec, pJson["tvSec"], "qint32", "");
132 
133  ::SWGSDRangel::setValue(&tv_u_sec, pJson["tvUSec"], "qint32", "");
134 
135  ::SWGSDRangel::setValue(&nb_original_blocks, pJson["nbOriginalBlocks"], "qint32", "");
136 
137  ::SWGSDRangel::setValue(&nb_fec_blocks, pJson["nbFECBlocks"], "qint32", "");
138 
139  ::SWGSDRangel::setValue(&center_freq, pJson["centerFreq"], "qint32", "");
140 
141  ::SWGSDRangel::setValue(&sample_rate, pJson["sampleRate"], "qint32", "");
142 
143  ::SWGSDRangel::setValue(&device_center_freq, pJson["deviceCenterFreq"], "qint32", "");
144 
145  ::SWGSDRangel::setValue(&device_sample_rate, pJson["deviceSampleRate"], "qint32", "");
146 
147 }
void setValue(void *value, QJsonValue obj, QString type, QString complexType)
Definition: SWGHelpers.cpp:25
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getCenterFreq()

qint32 SWGSDRangel::SWGRemoteSourceReport::getCenterFreq ( )

Definition at line 297 of file SWGRemoteSourceReport.cpp.

References center_freq.

297  {
298  return center_freq;
299 }

◆ getCorrectableErrorsCount()

qint32 SWGSDRangel::SWGRemoteSourceReport::getCorrectableErrorsCount ( )

Definition at line 237 of file SWGRemoteSourceReport.cpp.

References correctable_errors_count.

237  {
239 }

◆ getDeviceCenterFreq()

qint32 SWGSDRangel::SWGRemoteSourceReport::getDeviceCenterFreq ( )

Definition at line 317 of file SWGRemoteSourceReport.cpp.

References device_center_freq.

317  {
318  return device_center_freq;
319 }

◆ getDeviceSampleRate()

qint32 SWGSDRangel::SWGRemoteSourceReport::getDeviceSampleRate ( )

Definition at line 327 of file SWGRemoteSourceReport.cpp.

References device_sample_rate.

327  {
328  return device_sample_rate;
329 }

◆ getNbFecBlocks()

qint32 SWGSDRangel::SWGRemoteSourceReport::getNbFecBlocks ( )

Definition at line 287 of file SWGRemoteSourceReport.cpp.

References nb_fec_blocks.

287  {
288  return nb_fec_blocks;
289 }

◆ getNbOriginalBlocks()

qint32 SWGSDRangel::SWGRemoteSourceReport::getNbOriginalBlocks ( )

Definition at line 277 of file SWGRemoteSourceReport.cpp.

References nb_original_blocks.

277  {
278  return nb_original_blocks;
279 }

◆ getQueueLength()

qint32 SWGSDRangel::SWGRemoteSourceReport::getQueueLength ( )

Definition at line 207 of file SWGRemoteSourceReport.cpp.

References queue_length.

207  {
208  return queue_length;
209 }

◆ getQueueSize()

qint32 SWGSDRangel::SWGRemoteSourceReport::getQueueSize ( )

Definition at line 217 of file SWGRemoteSourceReport.cpp.

References queue_size.

217  {
218  return queue_size;
219 }

◆ getSampleRate()

qint32 SWGSDRangel::SWGRemoteSourceReport::getSampleRate ( )

Definition at line 307 of file SWGRemoteSourceReport.cpp.

References sample_rate.

307  {
308  return sample_rate;
309 }

◆ getSamplesCount()

qint32 SWGSDRangel::SWGRemoteSourceReport::getSamplesCount ( )

Definition at line 227 of file SWGRemoteSourceReport.cpp.

References samples_count.

227  {
228  return samples_count;
229 }

◆ getTvSec()

qint32 SWGSDRangel::SWGRemoteSourceReport::getTvSec ( )

Definition at line 257 of file SWGRemoteSourceReport.cpp.

References tv_sec.

257  {
258  return tv_sec;
259 }

◆ getTvUSec()

qint32 SWGSDRangel::SWGRemoteSourceReport::getTvUSec ( )

Definition at line 267 of file SWGRemoteSourceReport.cpp.

References tv_u_sec.

267  {
268  return tv_u_sec;
269 }

◆ getUncorrectableErrorsCount()

qint32 SWGSDRangel::SWGRemoteSourceReport::getUncorrectableErrorsCount ( )

Definition at line 247 of file SWGRemoteSourceReport.cpp.

References uncorrectable_errors_count.

247  {
249 }

◆ init()

void SWGSDRangel::SWGRemoteSourceReport::init ( )

Definition at line 64 of file SWGRemoteSourceReport.cpp.

References center_freq, correctable_errors_count, device_center_freq, device_sample_rate, m_center_freq_isSet, m_correctable_errors_count_isSet, m_device_center_freq_isSet, m_device_sample_rate_isSet, m_nb_fec_blocks_isSet, m_nb_original_blocks_isSet, m_queue_length_isSet, m_queue_size_isSet, m_sample_rate_isSet, m_samples_count_isSet, m_tv_sec_isSet, m_tv_u_sec_isSet, m_uncorrectable_errors_count_isSet, nb_fec_blocks, nb_original_blocks, queue_length, queue_size, sample_rate, samples_count, tv_sec, tv_u_sec, and uncorrectable_errors_count.

Referenced by SWGRemoteSourceReport(), and RemoteSource::webapiReportGet().

64  {
65  queue_length = 0;
66  m_queue_length_isSet = false;
67  queue_size = 0;
68  m_queue_size_isSet = false;
69  samples_count = 0;
70  m_samples_count_isSet = false;
75  tv_sec = 0;
76  m_tv_sec_isSet = false;
77  tv_u_sec = 0;
78  m_tv_u_sec_isSet = false;
81  nb_fec_blocks = 0;
82  m_nb_fec_blocks_isSet = false;
83  center_freq = 0;
84  m_center_freq_isSet = false;
85  sample_rate = 0;
86  m_sample_rate_isSet = false;
91 }
+ Here is the caller graph for this function:

◆ isSet()

bool SWGSDRangel::SWGRemoteSourceReport::isSet ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 338 of file SWGRemoteSourceReport.cpp.

References m_center_freq_isSet, m_correctable_errors_count_isSet, m_device_center_freq_isSet, m_device_sample_rate_isSet, m_nb_fec_blocks_isSet, m_nb_original_blocks_isSet, m_queue_length_isSet, m_queue_size_isSet, m_sample_rate_isSet, m_samples_count_isSet, m_tv_sec_isSet, m_tv_u_sec_isSet, and m_uncorrectable_errors_count_isSet.

Referenced by SWGSDRangel::SWGChannelReport::asJsonObject(), and SWGSDRangel::SWGChannelReport::isSet().

338  {
339  bool isObjectUpdated = false;
340  do{
341  if(m_queue_length_isSet){ isObjectUpdated = true; break;}
342  if(m_queue_size_isSet){ isObjectUpdated = true; break;}
343  if(m_samples_count_isSet){ isObjectUpdated = true; break;}
344  if(m_correctable_errors_count_isSet){ isObjectUpdated = true; break;}
345  if(m_uncorrectable_errors_count_isSet){ isObjectUpdated = true; break;}
346  if(m_tv_sec_isSet){ isObjectUpdated = true; break;}
347  if(m_tv_u_sec_isSet){ isObjectUpdated = true; break;}
348  if(m_nb_original_blocks_isSet){ isObjectUpdated = true; break;}
349  if(m_nb_fec_blocks_isSet){ isObjectUpdated = true; break;}
350  if(m_center_freq_isSet){ isObjectUpdated = true; break;}
351  if(m_sample_rate_isSet){ isObjectUpdated = true; break;}
352  if(m_device_center_freq_isSet){ isObjectUpdated = true; break;}
353  if(m_device_sample_rate_isSet){ isObjectUpdated = true; break;}
354  }while(false);
355  return isObjectUpdated;
356 }
+ Here is the caller graph for this function:

◆ setCenterFreq()

void SWGSDRangel::SWGRemoteSourceReport::setCenterFreq ( qint32  center_freq)

Definition at line 301 of file SWGRemoteSourceReport.cpp.

References center_freq, and m_center_freq_isSet.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setCorrectableErrorsCount()

void SWGSDRangel::SWGRemoteSourceReport::setCorrectableErrorsCount ( qint32  correctable_errors_count)

◆ setDeviceCenterFreq()

void SWGSDRangel::SWGRemoteSourceReport::setDeviceCenterFreq ( qint32  device_center_freq)

Definition at line 321 of file SWGRemoteSourceReport.cpp.

References device_center_freq, and m_device_center_freq_isSet.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setDeviceSampleRate()

void SWGSDRangel::SWGRemoteSourceReport::setDeviceSampleRate ( qint32  device_sample_rate)

Definition at line 331 of file SWGRemoteSourceReport.cpp.

References device_sample_rate, and m_device_sample_rate_isSet.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setNbFecBlocks()

void SWGSDRangel::SWGRemoteSourceReport::setNbFecBlocks ( qint32  nb_fec_blocks)

Definition at line 291 of file SWGRemoteSourceReport.cpp.

References m_nb_fec_blocks_isSet, and nb_fec_blocks.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setNbOriginalBlocks()

void SWGSDRangel::SWGRemoteSourceReport::setNbOriginalBlocks ( qint32  nb_original_blocks)

Definition at line 281 of file SWGRemoteSourceReport.cpp.

References m_nb_original_blocks_isSet, and nb_original_blocks.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setQueueLength()

void SWGSDRangel::SWGRemoteSourceReport::setQueueLength ( qint32  queue_length)

Definition at line 211 of file SWGRemoteSourceReport.cpp.

References m_queue_length_isSet, and queue_length.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setQueueSize()

void SWGSDRangel::SWGRemoteSourceReport::setQueueSize ( qint32  queue_size)

Definition at line 221 of file SWGRemoteSourceReport.cpp.

References m_queue_size_isSet, and queue_size.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setSampleRate()

void SWGSDRangel::SWGRemoteSourceReport::setSampleRate ( qint32  sample_rate)

Definition at line 311 of file SWGRemoteSourceReport.cpp.

References m_sample_rate_isSet, and sample_rate.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setSamplesCount()

void SWGSDRangel::SWGRemoteSourceReport::setSamplesCount ( qint32  samples_count)

Definition at line 231 of file SWGRemoteSourceReport.cpp.

References m_samples_count_isSet, and samples_count.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setTvSec()

void SWGSDRangel::SWGRemoteSourceReport::setTvSec ( qint32  tv_sec)

Definition at line 261 of file SWGRemoteSourceReport.cpp.

References m_tv_sec_isSet, and tv_sec.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setTvUSec()

void SWGSDRangel::SWGRemoteSourceReport::setTvUSec ( qint32  tv_u_sec)

Definition at line 271 of file SWGRemoteSourceReport.cpp.

References m_tv_u_sec_isSet, and tv_u_sec.

Referenced by RemoteSource::webapiFormatChannelReport().

+ Here is the caller graph for this function:

◆ setUncorrectableErrorsCount()

void SWGSDRangel::SWGRemoteSourceReport::setUncorrectableErrorsCount ( qint32  uncorrectable_errors_count)

Member Data Documentation

◆ center_freq

qint32 SWGSDRangel::SWGRemoteSourceReport::center_freq
private

◆ correctable_errors_count

qint32 SWGSDRangel::SWGRemoteSourceReport::correctable_errors_count
private

◆ device_center_freq

qint32 SWGSDRangel::SWGRemoteSourceReport::device_center_freq
private

◆ device_sample_rate

qint32 SWGSDRangel::SWGRemoteSourceReport::device_sample_rate
private

◆ m_center_freq_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_center_freq_isSet
private

◆ m_correctable_errors_count_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_correctable_errors_count_isSet
private

◆ m_device_center_freq_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_device_center_freq_isSet
private

◆ m_device_sample_rate_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_device_sample_rate_isSet
private

◆ m_nb_fec_blocks_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_nb_fec_blocks_isSet
private

◆ m_nb_original_blocks_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_nb_original_blocks_isSet
private

◆ m_queue_length_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_queue_length_isSet
private

◆ m_queue_size_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_queue_size_isSet
private

◆ m_sample_rate_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_sample_rate_isSet
private

◆ m_samples_count_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_samples_count_isSet
private

◆ m_tv_sec_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_tv_sec_isSet
private

Definition at line 103 of file SWGRemoteSourceReport.h.

Referenced by asJsonObject(), init(), isSet(), setTvSec(), and SWGRemoteSourceReport().

◆ m_tv_u_sec_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_tv_u_sec_isSet
private

Definition at line 106 of file SWGRemoteSourceReport.h.

Referenced by asJsonObject(), init(), isSet(), setTvUSec(), and SWGRemoteSourceReport().

◆ m_uncorrectable_errors_count_isSet

bool SWGSDRangel::SWGRemoteSourceReport::m_uncorrectable_errors_count_isSet
private

◆ nb_fec_blocks

qint32 SWGSDRangel::SWGRemoteSourceReport::nb_fec_blocks
private

◆ nb_original_blocks

qint32 SWGSDRangel::SWGRemoteSourceReport::nb_original_blocks
private

◆ queue_length

qint32 SWGSDRangel::SWGRemoteSourceReport::queue_length
private

◆ queue_size

qint32 SWGSDRangel::SWGRemoteSourceReport::queue_size
private

◆ sample_rate

qint32 SWGSDRangel::SWGRemoteSourceReport::sample_rate
private

◆ samples_count

qint32 SWGSDRangel::SWGRemoteSourceReport::samples_count
private

◆ tv_sec

qint32 SWGSDRangel::SWGRemoteSourceReport::tv_sec
private

◆ tv_u_sec

qint32 SWGSDRangel::SWGRemoteSourceReport::tv_u_sec
private

◆ uncorrectable_errors_count

qint32 SWGSDRangel::SWGRemoteSourceReport::uncorrectable_errors_count
private

The documentation for this class was generated from the following files: