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.
swagger
sdrangel
code
qt5
client
SWGRangeFloat.h
Go to the documentation of this file.
1
13
/*
14
* SWGRangeFloat.h
15
*
16
* An arbitrary range of floating point values
17
*/
18
19
#ifndef SWGRangeFloat_H_
20
#define SWGRangeFloat_H_
21
22
#include <QJsonObject>
23
24
25
26
#include "
SWGObject.h
"
27
#include "
export.h
"
28
29
namespace
SWGSDRangel
{
30
31
class
SWG_API
SWGRangeFloat
:
public
SWGObject
{
32
public
:
33
SWGRangeFloat
();
34
SWGRangeFloat
(QString* json);
35
virtual
~
SWGRangeFloat
();
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
SWGRangeFloat
* fromJson(QString &jsonString)
override
;
43
44
float
getMin();
45
void
setMin(
float
min
);
46
47
float
getMax();
48
void
setMax(
float
max
);
49
50
float
getStep();
51
void
setStep(
float
step);
52
53
54
virtual
bool
isSet()
override
;
55
56
private
:
57
float
min
;
58
bool
m_min_isSet
;
59
60
float
max
;
61
bool
m_max_isSet
;
62
63
float
step
;
64
bool
m_step_isSet
;
65
66
};
67
68
}
69
70
#endif
/* SWGRangeFloat_H_ */
export.h
SWGObject.h
SWGSDRangel::SWGRangeFloat::step
float step
Definition:
SWGRangeFloat.h:63
SWGSDRangel::SWGObject
Definition:
SWGObject.h:20
SWGSDRangel::SWGRangeFloat::max
float max
Definition:
SWGRangeFloat.h:60
SWGSDRangel::SWGRangeFloat::m_min_isSet
bool m_min_isSet
Definition:
SWGRangeFloat.h:58
SWG_API
#define SWG_API
Definition:
export.h:124
SWGSDRangel::SWGRangeFloat::m_max_isSet
bool m_max_isSet
Definition:
SWGRangeFloat.h:61
SWGSDRangel::SWGRangeFloat::min
float min
Definition:
SWGRangeFloat.h:57
SWGSDRangel::SWGRangeFloat::m_step_isSet
bool m_step_isSet
Definition:
SWGRangeFloat.h:64
leansdr::max
T max(const T &x, const T &y)
Definition:
framework.h:446
SWGSDRangel
Definition:
bfmdemod.h:51
SWGSDRangel::SWGRangeFloat
Definition:
SWGRangeFloat.h:31
leansdr::min
T min(const T &x, const T &y)
Definition:
framework.h:440
Generated on Fri Aug 2 2019 17:56:35 for SDRAngel by
1.8.13