TestObj.m 430 B

12345678910111213141516171819202122232425
  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. #import "TestObj.h"
  11. @implementation TestObj
  12. @synthesize int_val;
  13. -(BOOL) isTrue {
  14. return YES;
  15. }
  16. -(BOOL) isFalse {
  17. return NO;
  18. }
  19. @end