-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradiostation.cpp
More file actions
111 lines (93 loc) · 1.6 KB
/
radiostation.cpp
File metadata and controls
111 lines (93 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include "radiostation.h"
QString Radiostation::getHref() const
{
return href;
}
void Radiostation::setHref(const QString &value)
{
href = value;
}
QString Radiostation::getHtmlUid() const
{
return html_uid;
}
void Radiostation::setHtmlUid(const QString &value)
{
html_uid = value;
}
QString Radiostation::getIcon() const
{
return icon;
}
void Radiostation::setIcon(const QString &value)
{
icon = value;
}
QByteArray Radiostation::getIconFile() const
{
return iconFile;
}
void Radiostation::setIconFile(const QByteArray &value)
{
iconFile = value;
}
QString Radiostation::getName() const
{
return name;
}
void Radiostation::setName(const QString &value)
{
name = value;
}
QString Radiostation::getStreamAddress() const
{
return stream_address;
}
void Radiostation::setStreamAddress(const QString &value)
{
stream_address = value;
}
QString Radiostation::getUid() const
{
return uid;
}
void Radiostation::setUid(const QString &value)
{
uid = value;
}
VersionControl::VersionControl()
{
isSet = false;
}
QString VersionControl::getHash() const
{
return hash;
}
void VersionControl::setHash(const QString &value)
{
hash = value;
}
QDateTime VersionControl::getReleaseDate() const
{
return release_date;
}
void VersionControl::setReleaseDate(const QDateTime &value)
{
release_date = value;
}
int VersionControl::getIsValid() const
{
return isValid;
}
void VersionControl::setIsValid(int value)
{
isValid = value;
}
bool VersionControl::getIsSet() const
{
return isSet;
}
void VersionControl::setIsSet(bool value)
{
isSet = value;
}