mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-02 13:30:55 +00:00
24 lines
408 B
Objective-C
24 lines
408 B
Objective-C
//
|
|
// NuTemplateDWRDElement.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 NuTemplateDWRDElement : NuTemplateElement
|
|
{
|
|
short shortValue;
|
|
}
|
|
|
|
-(void) setShortValue: (short)n;
|
|
-(short) shortValue;
|
|
|
|
-(NSString*) stringValue;
|
|
-(void) setStringValue: (NSString*)str;
|
|
|
|
@end
|