blob: c1a16572b81674ab704da035207803d64e085fdc [file] [log] [blame] [edit]
//
// Connection.swift
// SwiftExperiments
//
// Created by Erik D on 05/06/14.
// Copyright (c) 2014 Mulle Kybernetik. All rights reserved.
//
import Foundation
@objc
protocol Connection {
func fetchData() -> String
}
class ServerConnection : NSObject, Connection {
func fetchData() -> String {
return "real data returned from other system"
}
}