diff options
Diffstat (limited to 'SwifTools/Notifier/NotificationCenterNotifierDelegate.h')
| -rw-r--r-- | SwifTools/Notifier/NotificationCenterNotifierDelegate.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/SwifTools/Notifier/NotificationCenterNotifierDelegate.h b/SwifTools/Notifier/NotificationCenterNotifierDelegate.h new file mode 100644 index 0000000..ea8fae0 --- /dev/null +++ b/SwifTools/Notifier/NotificationCenterNotifierDelegate.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2015 Isode Limited. | ||
| 3 | * All rights reserved. | ||
| 4 | * See the COPYING file for more information. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #pragma once | ||
| 8 | |||
| 9 | #import <Cocoa/Cocoa.h> | ||
| 10 | |||
| 11 | namespace Swift { | ||
| 12 | class NotificationCenterNotifier; | ||
| 13 | } | ||
| 14 | |||
| 15 | @interface NotificationCenterNotifierDelegate : NSObject<NSUserNotificationCenterDelegate> { | ||
| 16 | } | ||
| 17 | |||
| 18 | @property (nonatomic) Swift::NotificationCenterNotifier* notifier; | ||
| 19 | |||
| 20 | - (void)userNotificationCenter:(NSUserNotificationCenter *)center didActivateNotification:(NSUserNotification *)notification; | ||
| 21 | |||
| 22 | @end | ||
Swift