2012-02-10 09:28:37 +01:00
|
|
|
//
|
|
|
|
// TestObj.h
|
|
|
|
// OCTest
|
|
|
|
//
|
|
|
|
// Created by Phil on 13/11/2010.
|
|
|
|
// Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
2012-09-17 07:42:29 +02:00
|
|
|
#ifndef TWOBLUECUBES_TESTOBJ_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_TESTOBJ_H_INCLUDED
|
2012-02-10 09:28:37 +01:00
|
|
|
|
2012-04-28 13:29:52 +02:00
|
|
|
#import <Foundation/Foundation.h>
|
2012-02-10 09:28:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
@interface TestObj : NSObject {
|
|
|
|
|
|
|
|
int int_val;
|
|
|
|
}
|
|
|
|
|
2012-06-06 09:06:40 +02:00
|
|
|
-(BOOL) isTrue;
|
|
|
|
-(BOOL) isFalse;
|
|
|
|
|
2012-02-10 09:28:37 +01:00
|
|
|
@property (nonatomic, assign ) int int_val;
|
|
|
|
|
|
|
|
@end
|
2012-09-17 07:42:29 +02:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_TESTOBJ_H_INCLUDED
|