diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-07-05 15:22:10 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-07-05 15:22:10 +0200 |
commit | b4df9eb5f1f4a0ac2b1272fc34d4b8aad473008b (patch) | |
tree | 9abf529061432031afefd6a8bfa821a9779f763d /common/notification.h | |
parent | f9379318d801df204cc50385c5eca1f28e91755e (diff) | |
download | sink-b4df9eb5f1f4a0ac2b1272fc34d4b8aad473008b.tar.gz sink-b4df9eb5f1f4a0ac2b1272fc34d4b8aad473008b.zip |
Prepare for making the resource status available
Diffstat (limited to 'common/notification.h')
-rw-r--r-- | common/notification.h | 13 |
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 { | |||
30 | class SINK_EXPORT Notification | 30 | class SINK_EXPORT Notification |
31 | { | 31 | { |
32 | public: | 32 | public: |
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; |