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