vds_ios/VDS/Protocols/DefaultValuing.swift
Matt Bruce 42ad973396 refactored enum
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-03-01 14:43:32 -06:00

15 lines
267 B
Swift

//
// EnumValuing.swift
// VDS
//
// Created by Matt Bruce on 3/1/24.
//
import Foundation
public protocol DefaultValuing: Valuing {
static var defaultValue: Self { get }
}
public protocol CGFloatDefaultValuing: DefaultValuing where ValueType == CGFloat {}