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