mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-19 10:31:23 +00:00
24 lines
403 B
Objective-C
24 lines
403 B
Objective-C
//
|
|
// NuTemplateDBYTElement.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 NuTemplateDBYTElement : NuTemplateElement
|
|
{
|
|
char charValue;
|
|
}
|
|
|
|
-(void) setCharValue: (char)n;
|
|
-(char) charValue;
|
|
|
|
-(NSString*) stringValue;
|
|
-(void) setStringValue: (NSString*)str;
|
|
|
|
@end
|