diff options
Diffstat (limited to 'common/domain/applicationdomaintype.h')
-rw-r--r-- | common/domain/applicationdomaintype.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h index 7c3800d..1848224 100644 --- a/common/domain/applicationdomaintype.h +++ b/common/domain/applicationdomaintype.h | |||
@@ -99,7 +99,15 @@ struct SINK_EXPORT Progress { | |||
99 | }; | 99 | }; |
100 | 100 | ||
101 | struct BLOB { | 101 | struct BLOB { |
102 | BLOB() = default; | ||
103 | BLOB(const BLOB &) = default; | ||
104 | BLOB(const QString &id) : value(id) {}; | ||
105 | ~BLOB() = default; | ||
106 | bool operator==(const BLOB &other) const { | ||
107 | return value == other.value && isExternal == other.isExternal; | ||
108 | } | ||
102 | QString value; | 109 | QString value; |
110 | bool isExternal = true; | ||
103 | }; | 111 | }; |
104 | 112 | ||
105 | /** | 113 | /** |