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