- add sources.
[platform/framework/web/crosswalk.git] / src / third_party / ocmock / OCMock / OCMReturnValueProvider.h
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 OCMReturnValueProvider : NSObject 
9 {
10         id      returnValue;
11 }
12
13 - (id)initWithValue:(id)aValue;
14
15 - (void)handleInvocation:(NSInvocation *)anInvocation;
16
17 @end