AppDelegate.swift 560 B

1234567891011121314151617181920212223242526
  1. //
  2. // AppDelegate.swift
  3. // MacTerminal
  4. //
  5. // Created by Miguel de Icaza on 3/11/20.
  6. // Copyright © 2020 Miguel de Icaza. All rights reserved.
  7. //
  8. import Cocoa
  9. @NSApplicationMain
  10. class AppDelegate: NSObject, NSApplicationDelegate {
  11. @IBOutlet var loggingMenuItem: NSMenuItem?
  12. func applicationDidFinishLaunching(_ aNotification: Notification) {
  13. // Insert code here to initialize your application
  14. }
  15. func applicationWillTerminate(_ aNotification: Notification) {
  16. // Insert code here to tear down your application
  17. }
  18. }