Files
swift-mirror/stdlib/public/SDK/CallKit/CXProviderConfiguration.swift
Maxim Moiseev 3757b36c37 [overlay] Nest CallKit enum types within their associated classes (#4312)
Addresses the <rdar://problem/27553337>
2016-08-18 12:24:00 -07:00

31 lines
937 B
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
@_exported import CallKit
import Foundation
@available(iOS 10.0, *)
extension CXProviderConfiguration {
@nonobjc
public final var supportedHandleTypes: Set<CXHandle.HandleType> {
get {
return Set(__supportedHandleTypes.map {
CXHandle.HandleType(rawValue: $0.intValue)!
})
}
set {
__supportedHandleTypes =
Set(newValue.lazy.map { $0.rawValue as NSNumber })
}
}
}