diff options
Diffstat (limited to 'src/notifications.h')
-rw-r--r-- | src/notifications.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/notifications.h b/src/notifications.h index 18a689287..0c08c0430 100644 --- a/src/notifications.h +++ b/src/notifications.h @@ -41,6 +41,16 @@ namespace NotifyManager struct NotificationInfo final { + NotificationInfo(const char *const sound0, + const char *const text0, + const NotifyFlags flags0) : + sound(sound0), + text(text0), + flags(flags0) + { } + + A_DELETE_COPY(NotificationInfo) + const char *sound; const char *text; const NotifyFlags flags; |