summaryrefslogtreecommitdiffstats
path: root/common/notification.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-07-11 11:55:29 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-07-11 11:55:29 +0200
commit3a3118e768e1447dc7524328e84b8d7faef81fe1 (patch)
treeaf5582170ed6164fffc9365f34b17bf449c0db40 /common/notification.h
parentf9379318d801df204cc50385c5eca1f28e91755e (diff)
parentce2fd2666f084eebe443598f6f3740a02913091e (diff)
downloadsink-3a3118e768e1447dc7524328e84b8d7faef81fe1.tar.gz
sink-3a3118e768e1447dc7524328e84b8d7faef81fe1.zip
Merge branch 'feature/notifications' into develop
Diffstat (limited to 'common/notification.h')
-rw-r--r--common/notification.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/common/notification.h b/common/notification.h
index 0eb796d..0a267e6 100644
--- a/common/notification.h
+++ b/common/notification.h
@@ -30,6 +30,19 @@ namespace Sink {
30class SINK_EXPORT Notification 30class SINK_EXPORT Notification
31{ 31{
32public: 32public:
33 enum NoticationType {
34 Shutdown,
35 Status,
36 Warning,
37 Progress,
38 Inspection,
39 RevisionUpdate
40 };
41 enum InspectionCode {
42 Success,
43 Failure
44 };
45
33 QByteArray id; 46 QByteArray id;
34 int type; 47 int type;
35 QString message; 48 QString message;