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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
/* Foo.h
Copyright (c) 1815, Napoleon Bonaparte. All rights reserved.
*/
#if !defined(__FOO_H__)
#define __FOO_H__ 1
#import <FooSub/FooSub.h>
#import <FooHelper/FooHelper.h>
// Types.
// and stuff.
// Yo.
/// Aaa. FooEnum1. Bbb.
enum FooEnum1 {
/// Aaa. FooEnum1X. Bbb.
FooEnum1X
};
enum FooEnum2 { FooEnum2X, FooEnum2Y };
enum FooEnum3 { FooEnum3X = 10, FooEnum3Y = 20 };
#define CF_ENUM(_type, _name) enum _name : _type _name; enum _name : _type
#define CF_OPTIONS(_type, _name) enum _name : _type _name; enum _name : _type
#define NS_ENUM(_type, _name) CF_ENUM(_type, _name)
#define NS_OPTIONS(_type, _name) CF_OPTIONS(_type, _name)
/// Aaa. FooComparisonResult. Bbb.
typedef NS_ENUM(long, FooComparisonResult) {
// This is ascending
FooOrderedAscending = -1L,
FooOrderedSame, // But this is the same.
FooOrderedDescending
};
/// Aaa. FooRuncingOptions. Bbb.
typedef NS_OPTIONS(long, FooRuncingOptions) {
// This is mince.
FooRuncingEnableMince = 1,
FooRuncingEnableQuince = 2, /* But this is quince */
};
struct FooStruct1 {
int x;
double y;
};
typedef struct FooStruct1 *FooStruct1Pointer;
typedef struct FooStruct2 {
int x;
double y;
} FooStructTypedef1;
typedef struct {
int x;
double y;
} FooStructTypedef2;
/// Aaa. FooTypedef1. Bbb.
typedef int FooTypedef1;
/// Aaa. fooIntVar. Bbb.
extern int fooIntVar;
/// Aaa. fooFunc1. Bbb.
int fooFunc1(int a);
int fooFunc1AnonymousParam(int);
int fooFunc3(int a, float b, double c, int *d);
/*
Very good
fooFuncWithBlock function.
*/
extern
void fooFuncWithBlock(int (^blk)(float x));
void fooFuncWithFunctionPointer(int (*fptr)(float x));
void fooFuncNoreturn1(void) __attribute__((noreturn));
_Noreturn void fooFuncNoreturn2(void);
/**
* Aaa. fooFuncWithComment1. Bbb.
* Ccc.
*
* Ddd.
*/
void fooFuncWithComment1(void);
/*!
Aaa. fooFuncWithComment2. Bbb.
*/
void fooFuncWithComment2(void);
/**
* Aaa. fooFuncWithComment3. Bbb.
*/
/**
* Ccc.
*/
void fooFuncWithComment3(void);
/**
* Aaa. fooFuncWithComment4. Bbb.
*/
/// Ddd.
void fooFuncWithComment4(void);
/// Aaa. fooFuncWithComment5. Bbb.
/// Ccc.
///
/// Ddd.
void fooFuncWithComment5(void);
/// Aaa. redeclaredInMultipleModulesFunc1. Bbb.
int redeclaredInMultipleModulesFunc1(int a);
int fooFuncUsingVararg(int a, ...);// This comment should not show without decl.
/// Aaa. FooProtocolBase. Bbb.
@protocol FooProtocolBase
/// Aaa. fooProtoFunc. Bbb.
/// Ccc.
- (void)fooProtoFunc;
/// Aaa. fooProtoFuncWithExtraIndentation1. Bbb.
/// Ccc.
- (void)fooProtoFuncWithExtraIndentation1;
/**
* Aaa. fooProtoFuncWithExtraIndentation2. Bbb.
* Ccc.
*/
- (void)fooProtoFuncWithExtraIndentation2;
+ (void)fooProtoClassFunc;
@property int fooProperty1;
@property (readwrite) int fooProperty2;
@property (readonly) int fooProperty3;
@end
@protocol FooProtocolDerived<FooProtocolBase>
@end
@interface FooClassBase
- (void) fooBaseInstanceFunc0;
- (FooClassBase *) fooBaseInstanceFunc1:(id)anObject;
- (instancetype) init __attribute__((objc_designated_initializer));
- (instancetype) initWithFloat:(float)f;
- (void) fooBaseInstanceFuncOverridden;
+ (void) fooBaseClassFunc0;
+ (FooClassBase *)fooClassBase:(int)x;
@end
/// Aaa. FooClassDerived. Bbb.
@interface FooClassDerived : FooClassBase<FooProtocolDerived> {
int fooIntIvar;
}
@property int fooProperty1;
@property (readwrite) int fooProperty2;
@property (readonly) int fooProperty3;
/* Blah..
for fooInstanceFunc0..
blah blah.
*/
- (void) fooInstanceFunc0;
- (void) fooInstanceFunc1:(int)a;
- (void) fooInstanceFunc2:(int)a withB:(int)b;
- (void) fooBaseInstanceFuncOverridden;
+ (void) fooClassFunc0;
@end
@class BarForwardDeclaredClass;
enum BarforwardDeclaredEnum;
typedef int typedef_int_t;
/* FOO_MACRO_1 is the answer */
#define FOO_MACRO_1 0
#define FOO_MACRO_2 1
#define FOO_MACRO_3 (-1) // Don't use FOO_MACRO_3 on Saturdays.
#define FOO_MACRO_4 0xffffffffu
#define FOO_MACRO_5 0xffffffffffffffffull
#define FOO_MACRO_6 ((typedef_int_t) 42)
#define FOO_MACRO_7 ((typedef_int_t) -1)
#define FOO_MACRO_8 ((char) 8)
#define FOO_MACRO_9 ((int) 9)
#define FOO_MACRO_10 ((short) 10)
#define FOO_MACRO_11 ((long) 11)
#define FOO_MACRO_OR (FOO_MACRO_2 | FOO_MACRO_6)
#define FOO_MACRO_AND (FOO_MACRO_2 & FOO_MACRO_6)
#define FOO_MACRO_BITWIDTH (FOO_MACRO_4 & FOO_MACRO_5)
#define FOO_MACRO_SIGNED (FOO_MACRO_2 & FOO_MACRO_4)
#define FOO_MACRO_TYPEDEF ((FooStruct1Pointer) 1)
#define FOO_MACRO_UNDEF_1 0
#undef FOO_MACRO_UNDEF_1
#define FOO_MACRO_REDEF_1 0
#undef FOO_MACRO_REDEF_1
#define FOO_MACRO_REDEF_1 1
#define FOO_MACRO_REDEF_2 0
#define FOO_MACRO_REDEF_2 1
#define FOO_MACRO_NOT_IMPORTED_1 10_9
void theLastDeclInFoo();
void _internalTopLevelFunc();
struct _InternalStruct {
int x;
};
@interface FooClassBase(Cat1)
-(id) _internalMeth1;
@end
/* Extending FooClassBase with cool stuff */
@interface FooClassBase(Cat2)
-(id) _internalMeth2;
-(id) nonInternalMeth;
@end
@interface FooClassBase(Cat3)
-(id) _internalMeth3;
@end
@protocol _InternalProt
@end
@interface ClassWithInternalProt<_InternalProt>
@end
@interface FooClassPropertyOwnership : FooClassBase
@property (assign) id assignable;
@property (unsafe_unretained) id unsafeAssignable;
@property (retain) id retainable;
@property (strong) id strongRef;
@property (copy) id copyable;
@property (weak) id weakRef;
@property (assign) int scalar;
@end
@interface FooClassWithClassProperties : FooClassBase
@property (class, assign) id assignable;
@property (class, unsafe_unretained) id unsafeAssignable;
@property (class, retain) id retainable;
@property (class, strong) id strongRef;
@property (class, copy) id copyable;
@property (class, weak) id weakRef;
@property (class, assign) int scalar;
@end
#define FOO_NIL ((id)0)
@interface FooUnavailableMembers : FooClassBase
+ (instancetype)unavailableMembersWithInt:(int)i;
- (void)unavailable __attribute__((unavailable("x"))); // This comment should not show without decl. rdar://20092567
- (void)swiftUnavailable __attribute__((annotate("swift1_unavailable")));
- (void)deprecated __attribute__((deprecated("x")));
- (void)availabilityIntroduced __attribute__((availability(macosx, introduced=10.1)));
- (void)availabilityDeprecated __attribute__((availability(macosx, deprecated=10.1)));
- (void)availabilityObsoleted __attribute__((availability(macosx, obsoleted=10.1)));
- (void)availabilityUnavailable __attribute__((availability(macosx, unavailable)));
- (void)availabilityIntroducedMsg __attribute__((availability(macosx, introduced=10.1, message="x")));
- (void)availabilityDeprecatedMsg __attribute__((availability(macosx, deprecated=10.1, message="x")));
- (void)availabilityObsoletedMsg __attribute__((availability(macosx, obsoleted=10.1, message="x")));
- (void)availabilityUnavailableMsg __attribute__((availability(macosx, unavailable, message="x")));
@end
typedef struct __attribute__((objc_bridge(id))) __FooCFType *FooCFTypeRef;
void FooCFTypeRelease(FooCFTypeRef);
@interface FooRepeatedMembers : FooClassBase
- (void)repeatedMethod;
- (void)anotherMethod;
- (void)repeatedMethod;
@property int repeatedPropertyInCategory;
- (void)repeatedMethodInCategory;
@end
@interface FooRepeatedMembers (Category)
@property int repeatedPropertyInCategory;
- (void)repeatedMethodInCategory;
@property int repeatedPropertyFromCategory;
- (void)repeatedMethodFromCategory;
@end
@interface FooRepeatedMembers (AnotherCategory)
@property int repeatedPropertyFromCategory;
- (void)repeatedMethodFromCategory;
@end
typedef NS_ENUM(long, SCNFilterMode) {
SCNFilterModeNone = 0,
SCNFilterModeNearest = 1,
SCNFilterModeLinear = 2,
SCNNoFiltering __attribute__((unavailable(""))) = 3, // This comment should not show without decl.
};
#endif /* ! __FOO_H__ */
|