mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-18 17:06:15 +00:00
27 lines
488 B
Swift
27 lines
488 B
Swift
|
//
|
||
|
// AppDelegate.swift
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 16/07/2015.
|
||
|
// Copyright © 2015 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
@NSApplicationMain
|
||
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
||
|
|
||
|
|
||
|
|
||
|
func applicationDidFinishLaunching(aNotification: NSNotification) {
|
||
|
// Insert code here to initialize your application
|
||
|
}
|
||
|
|
||
|
func applicationWillTerminate(aNotification: NSNotification) {
|
||
|
// Insert code here to tear down your application
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|