• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 //  TestObj.h
3 //  OCTest
4 //
5 //  Created by Phil on 13/11/2010.
6 //  Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
7 //
8 //  Distributed under the Boost Software License, Version 1.0. (See accompanying
9 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10 #ifndef TWOBLUECUBES_TESTOBJ_H_INCLUDED
11 #define TWOBLUECUBES_TESTOBJ_H_INCLUDED
12 
13 #import <Foundation/Foundation.h>
14 
15 
16 @interface TestObj : NSObject {
17 
18     int int_val;
19 }
20 
21 -(BOOL) isTrue;
22 -(BOOL) isFalse;
23 
24 @property (nonatomic, assign ) int int_val;
25 
26 @end
27 
28 #endif // TWOBLUECUBES_TESTOBJ_H_INCLUDED
29