/* * Copyright (c) 2012 Tobias Markmann * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #import namespace Swift { class NotificationCenterNotifier; } @interface NotificationCenterNotifierDelegate : NSObject { Swift::NotificationCenterNotifier* notifier; } @property (nonatomic) Swift::NotificationCenterNotifier* notifier; - (void) userNotificationCenter:(NSUserNotificationCenter *) center didActivateNotification:(NSUserNotification *) notification; @end