Files
Florian Friedrich 5ce59f3fcc Update Copyright headers / file headers (#968)
* Change copyright headers in Classes, Tests and Integration

* Remove empty line from template

* Add headers to demo files
2018-10-19 11:26:00 +03:00

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