mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-27 04:29:37 +00:00
15 lines
193 B
Objective-C
15 lines
193 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementULNG : Element
|
|
{
|
|
UInt32 value;
|
|
}
|
|
|
|
- (void)setValue:(UInt32)v;
|
|
- (UInt32)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|