ResKnife/NuTemplateEditor/ElementOCNT.h

20 lines
277 B
C
Raw Normal View History

#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