use crate::common::*;
use crate::CloudKit::*;
use crate::CoreLocation::*;
use crate::Foundation::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "CloudKit_CKAsset")]
pub struct CKAsset;
#[cfg(feature = "CloudKit_CKAsset")]
unsafe impl ClassType for CKAsset {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "CloudKit_CKAsset")]
unsafe impl NSObjectProtocol for CKAsset {}
extern_methods!(
#[cfg(feature = "CloudKit_CKAsset")]
unsafe impl CKAsset {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
#[cfg(feature = "Foundation_NSURL")]
#[method_id(@__retain_semantics Init initWithFileURL:)]
pub unsafe fn initWithFileURL(this: Allocated<Self>, file_url: &NSURL) -> Id<Self>;
#[cfg(feature = "Foundation_NSURL")]
#[method_id(@__retain_semantics Other fileURL)]
pub unsafe fn fileURL(&self) -> Option<Id<NSURL>>;
}
);