• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 OCMPassByRefSetter : NSObject
9 {
10 	id value;
11 }
12 
13 - (id)initWithValue:(id)value;
14 
15 - (id)value;
16 
17 @end
18