20 lines
442 B
Swift
20 lines
442 B
Swift
//
|
|
// SettingsWindowController.swift
|
|
// Logger4
|
|
//
|
|
// Created by Kilian Hofmann on 15.08.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class SettingsWindowController: NSWindowController {
|
|
|
|
override func windowDidLoad() {
|
|
super.windowDidLoad()
|
|
|
|
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
|
}
|
|
|
|
}
|