blob: aff9fe3f19fa5a04f6d8134bf08d14d55728758b [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import UIKit
protocol DemoDescription: CustomStringConvertible {
var segue: String { get }
var instance: Demo { get }
}
protocol Demo {
mutating func start()
mutating func stop()
}