1234567891011121314151617181920 |
- //
- // AppDelegate.m
- // BenchmarkMac
- //
- // CocoaLumberjack Demos
- //
- #import "AppDelegate.h"
- #import "PerformanceTesting.h"
- @implementation AppDelegate
- @synthesize window = _window;
- - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
- {
- [PerformanceTesting startPerformanceTests];
- }
- @end
|