mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-27 04:29:37 +00:00
15 lines
217 B
Objective-C
15 lines
217 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementFBYT : Element
|
|
{
|
|
unsigned long length;
|
|
}
|
|
|
|
- (void)setLength:(unsigned long)l;
|
|
- (unsigned long)length;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|