mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
28 lines
521 B
Swift
28 lines
521 B
Swift
|
//
|
||
|
// AppDelegate.swift
|
||
|
// nvox
|
||
|
//
|
||
|
// Created by Tae Won Ha on 03/06/16.
|
||
|
// Copyright © 2016 Tae Won Ha. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
@NSApplicationMain
|
||
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
||
|
|
||
|
@IBOutlet weak var window: NSWindow!
|
||
|
|
||
|
|
||
|
func applicationDidFinishLaunching(aNotification: NSNotification) {
|
||
|
// Insert code here to initialize your application
|
||
|
}
|
||
|
|
||
|
func applicationWillTerminate(aNotification: NSNotification) {
|
||
|
// Insert code here to tear down your application
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|