summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/Declarations.h
blob: e1ad3c6be41d8f47dc880439dbfa11083aa4df6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

@interface EmptyClass : NSObject
-(void)aMessage:(id)arg;
@end

@interface EmptyClass : NSObject {}
-(void)aMessage:(id)arg;
@end

@interface NSObject (ObjectAdditions)
-(void)aMessage:(id)arg;
@end

@protocol TestProtocol
-(void)aMessage:(id)arg;
@end

@interface TestClass : NSObject <TestProtocol> {
}
-(void)aMessage:(id)arg;
@end