1a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis/*
2a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  Copyright 2014 The WebRTC Project Authors. All rights reserved.
3a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *
4a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  Use of this source code is governed by a BSD-style license
5a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  that can be found in the LICENSE file in the root of the source
6a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  tree. An additional intellectual property rights grant can be found
7a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  in the file PATENTS.  All contributing project authors may
8a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  be found in the AUTHORS file in the root of the source tree.
9a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis */
10a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
11a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis#import <Cocoa/Cocoa.h>
12a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
13a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis#import "APPRTCAppDelegate.h"
14a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
15a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtisint main(int argc, char* argv[]) {
16a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis  @autoreleasepool {
17a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis    [NSApplication sharedApplication];
18a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis    APPRTCAppDelegate* delegate = [[APPRTCAppDelegate alloc] init];
19a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis    [NSApp setDelegate:delegate];
20a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis    [NSApp run];
21a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis  }
22a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis}
23