ResKnife/NuTemplateEditor/ElementOCNT.h
Nicholas Shanks fee2452785 Allow the rebase of foreign repositories onto master.
Restores the NuTemplateEditor directory deleted from Git but not from SVN. Foreign repos were forked from SVN tree
2014-02-20 00:53:03 +00:00

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