summaryrefslogtreecommitdiffstats
blob: 0db437062a038f6e2ae10329c53085a61e953b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2012 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#import <Foundation/NSUserNotification.h>

namespace Swift {
	class NotificationCenterNotifier;
}

@interface NotificationCenterNotifierDelegate : NSObject<NSUserNotificationCenterDelegate> {
	Swift::NotificationCenterNotifier* notifier;
}

@property (nonatomic) Swift::NotificationCenterNotifier* notifier;

- (void) userNotificationCenter:(NSUserNotificationCenter *) center didActivateNotification:(NSUserNotification *) notification;

@end