mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
21 lines
593 B
Objective-C
Executable file
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
|