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
14 lines
197 B
Objective-C
14 lines
197 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementHEXD : Element
|
|
{
|
|
NSData *value;
|
|
}
|
|
- (void)setValue:(NSData *)d;
|
|
- (NSData *)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|