mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-03 04:31:27 +00:00
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
|