diff options
Diffstat (limited to 'third_party/ocmock/OCMock/OCMNotificationPoster.h')
-rw-r--r-- | third_party/ocmock/OCMock/OCMNotificationPoster.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/ocmock/OCMock/OCMNotificationPoster.h b/third_party/ocmock/OCMock/OCMNotificationPoster.h new file mode 100644 index 0000000..fd7f05d --- /dev/null +++ b/third_party/ocmock/OCMock/OCMNotificationPoster.h @@ -0,0 +1,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 |