mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-02-07 20:30:25 +00:00
15 lines
190 B
Objective-C
15 lines
190 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementFIXD : Element
|
|
{
|
|
Fixed value;
|
|
}
|
|
|
|
- (void)setValue:(Fixed)v;
|
|
- (Fixed)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|