forked from pypt/fervor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fvavailableupdate.h
51 lines (38 loc) · 1.13 KB
/
fvavailableupdate.h
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
#ifndef FVAVAILABLEUPDATE_H
#define FVAVAILABLEUPDATE_H
#include <QObject>
#include <QUrl>
class FvAvailableUpdate : public QObject
{
Q_OBJECT
public:
explicit FvAvailableUpdate(QObject *parent = 0);
QString GetTitle();
void SetTitle(QString title);
QUrl GetReleaseNotesLink();
void SetReleaseNotesLink(QUrl releaseNotesLink);
void SetReleaseNotesLink(QString releaseNotesLink);
QString GetPubDate();
void SetPubDate(QString pubDate);
QUrl GetEnclosureUrl();
void SetEnclosureUrl(QUrl enclosureUrl);
void SetEnclosureUrl(QString enclosureUrl);
QString GetEnclosureVersion();
void SetEnclosureVersion(QString enclosureVersion);
QString GetEnclosurePlatform();
void SetEnclosurePlatform(QString enclosurePlatform);
unsigned long GetEnclosureLength();
void SetEnclosureLength(unsigned long enclosureLength);
QString GetEnclosureType();
void SetEnclosureType(QString enclosureType);
private:
QString m_title;
QUrl m_releaseNotesLink;
QString m_pubDate;
QUrl m_enclosureUrl;
QString m_enclosureVersion;
QString m_enclosurePlatform;
unsigned long m_enclosureLength;
QString m_enclosureType;
};
#endif // FVAVAILABLEUPDATE_H