mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-05 02:31:30 +00:00
14 lines
197 B
C
14 lines
197 B
C
|
#import "Element.h"
|
||
|
|
||
|
@interface ElementHEXD : Element
|
||
|
{
|
||
|
NSData *value;
|
||
|
}
|
||
|
- (void)setValue:(NSData *)d;
|
||
|
- (NSData *)value;
|
||
|
|
||
|
- (NSString *)stringValue;
|
||
|
- (void)setStringValue:(NSString *)str;
|
||
|
|
||
|
@end
|