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
|
@import Foundation;
#ifndef NS_SWIFT_NAME(Name)
# define NS_SWIFT_NAME(Name) __attribute__((swift_name(#Name)))
#endif
@interface SEGreebieArray : NSObject
@end
typedef NS_OPTIONS(NSUInteger, OMWWobbleOptions) {
OMWWobbleSideToSide = 0x01,
OMWWobbleBackAndForth = 0x02,
OMWWobbleToXMLHex = 0x04
};
@interface OmitNeedlessWords : NSObject
-(void)jumpToUrl:(nonnull NSURL *)url;
-(void)jumpToGuid:(nonnull NSGUID *)guid;
-(void)jumpAgainToGUID:(nonnull NSGUID *)guid;
-(BOOL)objectIsCompatibleWithObject:(nonnull id)other;
-(void)insetByX:(NSInteger)x y:(NSInteger)y;
-(void)setIndirectlyToValue:(nonnull id)object;
-(void)jumpToTop:(nonnull id)sender;
-(void)removeWithNoRemorse:(nonnull id)object;
-(void)bookmarkWithURLs:(nonnull NSArray<NSURL *> *)urls;
-(void)bookmarkWithGUIDs:(nonnull NSArray<NSGUID *> *)guids;
-(void)saveToURL:(nonnull NSURL *)url forSaveOperation:(NSInteger)operation;
-(void)saveToGUID:(nonnull NSGUID *)guid forSaveOperation:(NSInteger)operation;
-(void)indexWithItemNamed:(nonnull NSString *)name;
-(void)methodAndReturnError:(NSError **)error;
-(nullable Class)typeOfString:(nonnull NSString *)string;
-(nullable Class)typeOfNamedString:(nonnull NSString *)string;
-(nullable Class)typeOfTypeNamed:(nonnull NSString *)string;
-(void)appendWithContentsOfString:(nonnull NSString *)string;
-(nonnull id)objectAtIndexedSubscript:(NSUInteger)idx;
-(void)exportPresetsBestMatchingString:(nonnull NSString *)string;
-(void)isCompatibleWithString:(nonnull NSString *)string;
-(void)addObjectValue:(nonnull id)object;
-(nonnull OmitNeedlessWords *)wordsBySlobbering:(nonnull NSString *)string;
-(void)drawPolygonWithPoints:(const NSPoint[])points count:(NSInteger)count;
-(void)drawFilledPolygonWithPoints:(NSPointArray)points count:(NSInteger)count;
-(void)drawGreebies:(nonnull SEGreebieArray*)greebies;
-(void)doSomethingBoundBy:(NSInteger)value;
-(void)doSomethingSeparatedBy:(NSInteger)value;
+(nonnull OmitNeedlessWords *)currentOmitNeedlessWords;
+(void)setCurrentOmitNeedlessWords:(nonnull OmitNeedlessWords *)value;
-(void)compilerPlugInValue:(NSInteger)value;
-(void)wobbleWithOptions:(OMWWobbleOptions)options;
@end
@interface ABCDoodle : NSObject
@property (nonatomic,copy,nonnull) NSArray<ABCDoodle *> *doodles;
-(void)addDoodle:(nonnull ABCDoodle *)doodle;
@end
@protocol OMWLanding
-(void)flipLanding;
@end
@protocol OMWWiggle
-(void)joinSub;
@property (readonly) NSInteger conflictingProp1 NS_SWIFT_NAME(wiggleProp1);
@end
@protocol OMWWaggle
@property (readonly) NSInteger conflictingProp1 NS_SWIFT_NAME(waggleProp1);
@end
@interface OMWSuper : NSObject <OMWWiggle>
-(void)jumpSuper;
@property (readonly) NSInteger conflictingProp1;
@end
@interface OMWSub : OMWSuper <OMWWaggle>
-(void)jumpSuper;
-(void)joinSub;
@property (readonly) NSInteger conflictingProp1;
@end
@interface OMWObjectType : NSObject
-(void)_enumerateObjectTypesWithHandler:(nonnull void (^)(void))handler;
@end
@interface OMWTerrifyingGarbage4DTypeRefMask_t : NSObject
-(void)throwGarbageAway;
-(void)throwGarbage4DAwayHarder;
-(void)throwGarbage4DTypeRefMask_tAwayHardest;
-(void)burnGarbage;
-(void)carefullyBurnGarbage4D;
-(void)veryCarefullyBurnGarbage4DTypeRefMask_t;
@end
|