Delete old ScreenOrientationDelegte
[chromium-blink-merge.git] / third_party / ocmock / OCMock / OCPartialMockObject.h
blobbd549ed2a7ac5694103b39fab388d9c8eaf85442
1 //---------------------------------------------------------------------------------------
2 // $Id$
3 // Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
4 //---------------------------------------------------------------------------------------
6 #import "OCClassMockObject.h"
8 @interface OCPartialMockObject : OCClassMockObject
10 NSObject *realObject;
13 - (id)initWithObject:(NSObject *)anObject;
15 - (NSObject *)realObject;
17 - (void)stop;
19 - (void)setupSubclassForObject:(id)anObject;
20 - (void)setupForwarderForSelector:(SEL)selector;
22 @end
25 extern NSString *OCMRealMethodAliasPrefix;