forked from wikimedia/wikipedia-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWMFCodingStyle.h
More file actions
33 lines (21 loc) · 1.05 KB
/
WMFCodingStyle.h
File metadata and controls
33 lines (21 loc) · 1.05 KB
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
#import <UIKit/UIKit.h>
extern NSString* const WMFCodingStyleConstant;
typedef NS_ENUM (NSInteger, WMFCodingStyle) {
WMFCodingStyleDefault = 0,
WMFCodingStyleValue = 1
};
extern NSString* WMFCodingStyleAsString(WMFCodingStyle style);
extern void WMFMultilineFunctionDeclaration(int arg1,
NSString* arg2,
WMFCodingStyle arg3);
@interface WMFCodingStyleModel : NSObject <NSCopying>
@property (nonatomic, copy, readonly) NSString* modelIdentifier;
@property (nonatomic, readonly) WMFCodingStyle codingStyle;
@property (nonatomic, readonly) NSString* codingStyleString;
- (instancetype)initWithModelIdentifier:(NSString*)modelIdentifier
codingStyle:(WMFCodingStyle)codingStyle;
- (BOOL)isEqualToCodingStyleModel:(WMFCodingStyleModel*)otherModel;
- (NSString*)codingStyleDefaultString;
- (void) methodSignature:(id)foo
withReallyReallyReallyReallyReallyReallyReallyLongSecondParameter:(id)arg;
@end