mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
12 lines
177 B
C
12 lines
177 B
C
|
|
@interface Base {
|
||
|
|
int my_var;
|
||
|
|
}
|
||
|
|
-(int) my_var;
|
||
|
|
-(void) my_method: (int)param;
|
||
|
|
+(void) my_method: (int)param;
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface Sub : Base
|
||
|
|
-(void) my_method: (int)param;
|
||
|
|
@end
|