mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-07 11:07:14 +00:00
24 lines
402 B
Objective-C
24 lines
402 B
Objective-C
//
|
|
// NuTemplateDLNGlement.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 NuTemplateDLNGElement : NuTemplateElement
|
|
{
|
|
long longValue;
|
|
}
|
|
|
|
-(void) setLongValue: (long)n;
|
|
-(long) longValue;
|
|
|
|
-(NSString*) stringValue;
|
|
-(void) setStringValue: (NSString*)str;
|
|
|
|
@end
|