mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 02:29:56 +00:00
21 lines
353 B
Objective-C
21 lines
353 B
Objective-C
//
|
|
// NuTemplatePSTRElement.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 NuTemplatePSTRElement : NuTemplateElement
|
|
{
|
|
NSString* stringValue;
|
|
}
|
|
|
|
-(void) setStringValue: (NSString*)d;
|
|
-(NSString*) stringValue;
|
|
|
|
@end
|