20 lines
420 B
Swift
20 lines
420 B
Swift
//
|
|
// ConstrainingMoleculeProtocol.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Suresh, Kamlesh on 11/20/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol ConstrainingMoleculeProtocol: MoleculeProtocol {
|
|
var molecule: MoleculeProtocol? { get }
|
|
}
|
|
|
|
extension ConstrainingMoleculeProtocol {
|
|
public var molecule: MoleculeProtocol? {
|
|
get { return nil }
|
|
}
|
|
}
|