blob: fd7f05dbf32b855d3977b56c791cde39bc673a27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//---------------------------------------------------------------------------------------
// $Id: OCMNotificationPoster.h 50 2009-07-16 06:48:19Z erik $
// Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
//---------------------------------------------------------------------------------------
#import <Foundation/Foundation.h>
@interface OCMNotificationPoster : NSObject
{
NSNotification *notification;
}
- (id)initWithNotification:(id)aNotification;
- (void)handleInvocation:(NSInvocation *)anInvocation;
@end
|