mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 17:30:15 +00:00
21 lines
353 B
C
21 lines
353 B
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
|