ResKnife/NuTemplateEditor/ElementDBYT.h
Nicholas Shanks fee2452785 Allow the rebase of foreign repositories onto master.
Restores the NuTemplateEditor directory deleted from Git but not from SVN. Foreign repos were forked from SVN tree
2014-02-20 00:53:03 +00:00

17 lines
232 B
Objective-C

#import "Element.h"
@interface ElementDBYT : Element
{
SInt8 value;
}
- (void)setValue:(SInt8)v;
- (SInt8)value;
- (NSString *)stringValue;
- (void)setStringValue:(NSString *)str;
@end
@interface ElementKBYT : ElementDBYT
@end