forked from pmougin/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFSTestObjCClass2.h
34 lines (31 loc) · 1.01 KB
/
FSTestObjCClass2.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* FSTestObjCClass2.h Copyright (c) 2008-2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import "FSTestObjCClass1.h"
@interface FSTestObjCClass2 : FSTestObjCClass1
{
_Bool iv__Bool2;
char iv_char2;
unsigned char iv_unsigned_char2;
short iv_short2;
unsigned short iv_unsigned_short2;
int iv_int2;
unsigned int iv_unsigned_int2;
long iv_long2;
unsigned long iv_unsigned_long2;
long long iv_long_long2;
unsigned long long iv_unsigned_long_long2;
id iv_id2;
Class iv_Class2;
float iv_float2;
double iv_double2;
SEL iv_SEL2;
NSRange iv_NSRange2;
NSSize iv_NSSize2;
CGSize iv_CGSize2;
NSPoint iv_NSPoint2;
CGPoint iv_CGPoint2;
NSRect iv_NSRect2;
CGRect iv_CGRect2;
void * iv_voidPtr2;
}
@end