ivar-list-semi.mm   [plain text]


/* APPLE LOCAL file Objective-C++ */
/* Allow for an optional semicolon following the ivar block.  */
/* Contributed by: Ziemowit Laski <zlaski@apple.com>.  */

#include <objc/Object.h>

@interface Tink : Object {
@private
 unsigned long mCode[4];
};
- (id)initWithProc:(void *)inProc;
- (void *)getUniqueProc;
@end