use objc2::__framework_prelude::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "VZAudioInputStreamSource")]
pub struct VZHostAudioInputStreamSource;
#[cfg(feature = "VZAudioInputStreamSource")]
unsafe impl ClassType for VZHostAudioInputStreamSource {
#[inherits(NSObject)]
type Super = VZAudioInputStreamSource;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "VZAudioInputStreamSource")]
unsafe impl NSObjectProtocol for VZHostAudioInputStreamSource {}
extern_methods!(
#[cfg(feature = "VZAudioInputStreamSource")]
unsafe impl VZHostAudioInputStreamSource {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
}
);
extern_methods!(
#[cfg(feature = "VZAudioInputStreamSource")]
unsafe impl VZHostAudioInputStreamSource {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Retained<Self>;
}
);