linphone-iphone/Classes/Utils/XMLRPC/Tools/Test Client/TestClientXMLParserWindowController.h
2012-08-02 15:02:39 +02:00

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