mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-06-06 20:18:32 +00:00
* Change copyright headers in Classes, Tests and Integration * Remove empty line from template * Add headers to demo files
21 lines
315 B
Objective-C
21 lines
315 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// BenchmarkMac
|
|
//
|
|
// CocoaLumberjack Demos
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "PerformanceTesting.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
@synthesize window = _window;
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
{
|
|
[PerformanceTesting startPerformanceTests];
|
|
}
|
|
|
|
@end
|