mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-18 19:07:16 +00:00
fee2452785
Restores the NuTemplateEditor directory deleted from Git but not from SVN. Foreign repos were forked from SVN tree
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
|