mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-19 10:31:23 +00:00
21 lines
374 B
Objective-C
21 lines
374 B
Objective-C
//
|
|
// NuTemplateGroupElement.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 NuTemplateGroupElement : NuTemplateElement
|
|
{
|
|
NSMutableArray* subElements;
|
|
}
|
|
|
|
-(void) setSubElements: (NSMutableArray*)a;
|
|
-(NSMutableArray*) subElements;
|
|
|
|
@end
|