AppDelegate.m 315 B

1234567891011121314151617181920
  1. //
  2. // AppDelegate.m
  3. // BenchmarkMac
  4. //
  5. // CocoaLumberjack Demos
  6. //
  7. #import "AppDelegate.h"
  8. #import "PerformanceTesting.h"
  9. @implementation AppDelegate
  10. @synthesize window = _window;
  11. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
  12. {
  13. [PerformanceTesting startPerformanceTests];
  14. }
  15. @end