19 lines
343 B
Swift
19 lines
343 B
Swift
//
|
|
// MainViewController.swift
|
|
// ipbc-Client
|
|
//
|
|
// Created by Gerrit Linnemann on 09.09.15.
|
|
// Copyright (c) 2015 Adawim UG (haftungsbeschränkt). All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class MainViewController: NSViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
// Do view setup here.
|
|
}
|
|
|
|
}
|