mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-02 13:30:55 +00:00
27 lines
537 B
Objective-C
27 lines
537 B
Objective-C
//
|
|
// NuTemplateOCNTElement.h
|
|
// ResKnife (PB2)
|
|
//
|
|
// Created by Uli Kusterer on Tue Aug 05 2003.
|
|
// Copyright (c) 2003 M. Uli Kusterer. All rights reserved.
|
|
//
|
|
|
|
#import "NuTemplateElement.h"
|
|
|
|
|
|
@interface NuTemplateOCNTElement : NuTemplateElement
|
|
{
|
|
unsigned long longValue;
|
|
}
|
|
|
|
+(NuTemplateOCNTElement*) lastParsedElement;
|
|
+(void) setLastParsedElement: (NuTemplateOCNTElement*)e;
|
|
|
|
-(void) setLongValue: (unsigned long)n;
|
|
-(unsigned long) longValue;
|
|
|
|
-(NSString*) stringValue;
|
|
-(void) setStringValue: (NSString*)str;
|
|
|
|
@end
|