mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-07 11:07:14 +00:00
15 lines
193 B
Objective-C
15 lines
193 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementDLLG : Element
|
|
{
|
|
SInt64 value;
|
|
}
|
|
|
|
- (void)setValue:(SInt64)v;
|
|
- (SInt64)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|