AppDelegate.swift 575 B

12345678910111213141516171819202122232425
  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. import SwiftTerm
  10. @NSApplicationMain
  11. class AppDelegate: NSObject, NSApplicationDelegate {
  12. @IBOutlet var loggingMenuItem: NSMenuItem?
  13. func applicationDidFinishLaunching(_ aNotification: Notification) {
  14. // Insert code here to initialize your application
  15. }
  16. func applicationWillTerminate(_ aNotification: Notification) {
  17. // Insert code here to tear down your application
  18. }
  19. }