blob: ae2e37d098ac42426d6a0ceb02f06ff9fb93a901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//---------------------------------------------------------------------------------------
// $Id: NSNotificationCenter+OCMAdditions.h$
// Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
//---------------------------------------------------------------------------------------
#import <Foundation/Foundation.h>
@class OCMockObserver;
@interface NSNotificationCenter(OCMAdditions)
- (void)addMockObserver:(OCMockObserver *)notificationObserver name:(NSString *)notificationName object:(id)notificationSender;
@end
|