mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-27 04:29:37 +00:00
18 lines
236 B
Objective-C
18 lines
236 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementDLNG : Element
|
|
{
|
|
SInt32 value;
|
|
}
|
|
|
|
- (void)setValue:(SInt32)v;
|
|
- (SInt32)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|
|
|
|
@interface ElementKLNG : ElementDLNG
|
|
@end
|