use crate::common::*;
use crate::CallKit::*;
use crate::Foundation::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "CallKit_CXCall")]
pub struct CXCall;
#[cfg(feature = "CallKit_CXCall")]
unsafe impl ClassType for CXCall {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "CallKit_CXCall")]
unsafe impl NSObjectProtocol for CXCall {}
extern_methods!(
#[cfg(feature = "CallKit_CXCall")]
unsafe impl CXCall {
#[cfg(feature = "Foundation_NSUUID")]
#[method_id(@__retain_semantics Other UUID)]
pub unsafe fn UUID(&self) -> Id<NSUUID>;
#[method(isOutgoing)]
pub unsafe fn isOutgoing(&self) -> bool;
#[method(isOnHold)]
pub unsafe fn isOnHold(&self) -> bool;
#[method(hasConnected)]
pub unsafe fn hasConnected(&self) -> bool;
#[method(hasEnded)]
pub unsafe fn hasEnded(&self) -> bool;
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method(isEqualToCall:)]
pub unsafe fn isEqualToCall(&self, call: &CXCall) -> bool;
}
);
extern_methods!(
#[cfg(feature = "CallKit_CXCall")]
unsafe impl CXCall {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);