mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-17 19:30:54 +00:00
24 lines
547 B
Objective-C
24 lines
547 B
Objective-C
//
|
|
// NuTemplateLSTEElement.h
|
|
// ResKnife (PB2)
|
|
//
|
|
// Created by Uli Kusterer on Tue Aug 05 2003.
|
|
// Copyright (c) 2003 M. Uli Kusterer. All rights reserved.
|
|
//
|
|
|
|
#import <AppKit/AppKit.h>
|
|
#import "NuTemplateGroupElement.h"
|
|
|
|
|
|
@interface NuTemplateLSTEElement : NuTemplateGroupElement
|
|
{
|
|
NuTemplateGroupElement* groupElemTemplate; // The item of which we're to create a copy.
|
|
}
|
|
|
|
-(IBAction) showCreateResourceSheet: (id)sender;
|
|
|
|
-(void) setGroupElemTemplate: (NuTemplateGroupElement*)e;
|
|
-(NuTemplateGroupElement*) groupElemTemplate;
|
|
|
|
@end
|