mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-08 17:06:27 +00:00
fee2452785
Restores the NuTemplateEditor directory deleted from Git but not from SVN. Foreign repos were forked from SVN tree
25 lines
664 B
Objective-C
25 lines
664 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "Element.h"
|
|
|
|
@class ElementOCNT;
|
|
@class ElementLSTB;
|
|
@interface ElementLSTE : Element
|
|
{
|
|
ElementLSTB *groupElementTemplate; // The item of which we're to create a copy.
|
|
ElementOCNT *countElement; // The "counter" element if we're the end of an LSTC list.
|
|
BOOL writesZeroByte; // Write a terminating zero-byte when writing out this item (used by LSTZ).
|
|
}
|
|
|
|
- (IBAction)createListEntry:(id)sender;
|
|
|
|
- (void)setWritesZeroByte:(BOOL)n;
|
|
- (BOOL)writesZeroByte;
|
|
|
|
- (void)setGroupElementTemplate:(ElementLSTB *)e;
|
|
- (ElementLSTB *)groupElementTemplate;
|
|
|
|
- (void)setCountElement:(ElementOCNT *)e;
|
|
- (ElementOCNT *)countElement;
|
|
|
|
@end
|