mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
25 lines
466 B
Objective-C
Executable file
25 lines
466 B
Objective-C
Executable file
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface TestClientXMLParserWindowController : NSWindowController {
|
|
id myParsedObject;
|
|
IBOutlet NSTextView *myXML;
|
|
IBOutlet NSOutlineView *myParserResult;
|
|
}
|
|
|
|
+ (TestClientXMLParserWindowController *)sharedController;
|
|
|
|
#pragma mark -
|
|
|
|
- (void)showXMLParserWindow: (id)sender;
|
|
|
|
- (void)hideXMLParserWindow: (id)sender;
|
|
|
|
#pragma mark -
|
|
|
|
- (void)toggleXMLParserWindow: (id)sender;
|
|
|
|
#pragma mark -
|
|
|
|
- (void)parse: (id)sender;
|
|
|
|
@end
|