AppDelegate.swift 391 B

12345678910111213141516171819
  1. //
  2. // AppDelegate.swift
  3. // ReachabilityMacSample
  4. //
  5. // Created by Reda Lemeden on 28/11/2015.
  6. // Copyright © 2015 Ashley Mills. All rights reserved.
  7. //
  8. import Cocoa
  9. @NSApplicationMain
  10. class AppDelegate: NSObject, NSApplicationDelegate {
  11. func applicationDidFinishLaunching(aNotification: NSNotification) {
  12. }
  13. func applicationWillTerminate(aNotification: NSNotification) {
  14. }
  15. }