mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-08 17:06:27 +00:00
18 lines
236 B
Objective-C
18 lines
236 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementDWRD : Element
|
|
{
|
|
SInt16 value;
|
|
}
|
|
|
|
- (void)setValue:(SInt16)v;
|
|
- (SInt16)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|
|
|
|
@interface ElementKWRD : ElementDWRD
|
|
@end
|