linphone-ios/Classes/Utils/XMLRPC/Tools/Test Client/TestClientApplicationController.m
2012-08-02 15:02:39 +02:00

21 lines
593 B
Objective-C
Executable file

#import "TestClientApplicationController.h"
#import "TestClientMainWindowController.h"
#import "TestClientXMLParserWindowController.h"
@implementation TestClientApplicationController
- (void)applicationDidFinishLaunching: (NSNotification *)notification {
[self toggleTestClientWindow: self];
}
#pragma mark -
- (void)toggleTestClientWindow: (id)sender {
[[TestClientMainWindowController sharedController] toggleTestClientWindow: self];
}
- (void)toggleXMLParserWindow: (id)sender {
[[TestClientXMLParserWindowController sharedController] toggleXMLParserWindow: self];
}
@end