mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-03 04:31:27 +00:00
20 lines
277 B
Objective-C
20 lines
277 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementOCNT : Element
|
|
{
|
|
unsigned long value;
|
|
}
|
|
|
|
- (BOOL)countFromZero;
|
|
|
|
- (void)setValue:(unsigned long)v;
|
|
- (unsigned long)value;
|
|
|
|
- (void)increment;
|
|
- (void)decrement;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|