• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2//  TestObj.m
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
11#import "TestObj.h"
12
13
14@implementation TestObj
15
16@synthesize int_val;
17
18-(BOOL) isTrue {
19    return YES;
20}
21-(BOOL) isFalse {
22    return NO;
23}
24
25@end
26