diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-05-01 16:21:28 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-05-01 16:21:28 +0200 |
commit | c1475df297975b403d991f69ef9436cd576c1e46 (patch) | |
tree | 40c4101ce7569c6bebb508ff9e9aa50716120d92 /common/domain/applicationdomaintype.h | |
parent | 9040c66f5fb617a057b9c362ac9a937fe9dd0739 (diff) | |
download | sink-c1475df297975b403d991f69ef9436cd576c1e46.tar.gz sink-c1475df297975b403d991f69ef9436cd576c1e46.zip |
Setter and getter for blob properties
Diffstat (limited to 'common/domain/applicationdomaintype.h')
-rw-r--r-- | common/domain/applicationdomaintype.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h index c94a987..e00b244 100644 --- a/common/domain/applicationdomaintype.h +++ b/common/domain/applicationdomaintype.h | |||
@@ -67,8 +67,13 @@ public: | |||
67 | virtual ~ApplicationDomainType(); | 67 | virtual ~ApplicationDomainType(); |
68 | 68 | ||
69 | bool hasProperty(const QByteArray &key) const; | 69 | bool hasProperty(const QByteArray &key) const; |
70 | |||
70 | QVariant getProperty(const QByteArray &key) const; | 71 | QVariant getProperty(const QByteArray &key) const; |
71 | void setProperty(const QByteArray &key, const QVariant &value); | 72 | void setProperty(const QByteArray &key, const QVariant &value); |
73 | |||
74 | QByteArray getBlobProperty(const QByteArray &key) const; | ||
75 | void setBlobProperty(const QByteArray &key, const QByteArray &value); | ||
76 | |||
72 | void setChangedProperties(const QSet<QByteArray> &changeset); | 77 | void setChangedProperties(const QSet<QByteArray> &changeset); |
73 | QByteArrayList changedProperties() const; | 78 | QByteArrayList changedProperties() const; |
74 | QByteArrayList availableProperties() const; | 79 | QByteArrayList availableProperties() const; |