mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-18 19:07:16 +00:00
fee2452785
Restores the NuTemplateEditor directory deleted from Git but not from SVN. Foreign repos were forked from SVN tree
27 lines
633 B
Objective-C
27 lines
633 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "Element.h"
|
|
|
|
@class ElementLSTE;
|
|
@class ElementOCNT;
|
|
|
|
@interface ElementLSTB : Element
|
|
{
|
|
NSMutableArray *subElements;
|
|
ElementLSTB *groupElementTemplate; // TMPL equivalent of self, for cloning
|
|
ElementOCNT *countElement; // Our "list counter" element.
|
|
}
|
|
|
|
- (void)readDataForElements:(TemplateStream *)stream;
|
|
- (IBAction)createListEntry:(id)sender;
|
|
|
|
- (void)setSubElements:(NSMutableArray *)a;
|
|
- (NSMutableArray *)subElements;
|
|
|
|
- (void)setGroupElementTemplate:(ElementLSTB *)e;
|
|
- (ElementLSTB *)groupElementTemplate;
|
|
|
|
- (void)setCountElement:(ElementOCNT *)e;
|
|
- (ElementOCNT *)countElement;
|
|
|
|
@end
|