// // DocHubControllers.swift // DocHub // // Created by Tristan Juricek on 6/10/14. // Copyright (c) 2014 Perforce. All rights reserved. // import Foundation import AppKit class DocHubController : NSObject, NSApplicationDelegate { var window: NSWindow init() { window = NSWindow() super.init() } func applicationDidFinishLaunching(aNotification: NSNotification?) { NSLog("DocHubController init!") // Insert code here to initialize your application } func applicationWillTerminate(aNotification: NSNotification?) { // Insert code here to tear down your application } }