mvm_core_ui/MVMCoreUI/OtherHandlers/DelegateObject.swift
2019-04-12 15:32:43 -04:00

19 lines
456 B
Swift

//
// DelegateObject.swift
// MVMCoreUI
//
// Created by Scott Pfeil on 4/12/19.
// Copyright © 2019 Verizon Wireless. All rights reserved.
//
import UIKit
@objc(MVMCoreUIDelegateObject)
open class DelegateObject: MVMCore.DelegateObject {
public weak var formValidationProtocol: FormValidationProtocol?
open override func setAll(withDelegate delegate: Any) {
formValidationProtocol = delegate as? FormValidationProtocol
}
}