mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-12 17:09:53 +01:00
20 lines
259 B
C
20 lines
259 B
C
|
//
|
||
|
// TestObj.h
|
||
|
// OCTest
|
||
|
//
|
||
|
// Created by Phil on 13/11/2010.
|
||
|
// Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
|
||
|
@interface TestObj : NSObject {
|
||
|
|
||
|
int int_val;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, assign ) int int_val;
|
||
|
|
||
|
@end
|