use crate::common::*;
use crate::AppKit::*;
use crate::CoreLocation::*;
use crate::Foundation::*;
use crate::PhotoKit::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "PhotoKit_PHProjectChangeRequest")]
pub struct PHProjectChangeRequest;
#[cfg(feature = "PhotoKit_PHProjectChangeRequest")]
unsafe impl ClassType for PHProjectChangeRequest {
#[inherits(NSObject)]
type Super = PHChangeRequest;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "PhotoKit_PHProjectChangeRequest")]
unsafe impl NSObjectProtocol for PHProjectChangeRequest {}
extern_methods!(
#[cfg(feature = "PhotoKit_PHProjectChangeRequest")]
unsafe impl PHProjectChangeRequest {
#[cfg(feature = "PhotoKit_PHProject")]
#[method_id(@__retain_semantics Init initWithProject:)]
pub unsafe fn initWithProject(this: Allocated<Self>, project: &PHProject) -> Id<Self>;
#[cfg(feature = "Foundation_NSString")]
#[method_id(@__retain_semantics Other title)]
pub unsafe fn title(&self) -> Id<NSString>;
#[cfg(feature = "Foundation_NSString")]
#[method(setTitle:)]
pub unsafe fn setTitle(&self, title: &NSString);
#[cfg(feature = "Foundation_NSData")]
#[method_id(@__retain_semantics Other projectExtensionData)]
pub unsafe fn projectExtensionData(&self) -> Id<NSData>;
#[cfg(feature = "Foundation_NSData")]
#[method(setProjectExtensionData:)]
pub unsafe fn setProjectExtensionData(&self, project_extension_data: &NSData);
#[cfg(feature = "PhotoKit_PHAsset")]
#[deprecated]
#[method(setKeyAsset:)]
pub unsafe fn setKeyAsset(&self, key_asset: Option<&PHAsset>);
#[cfg(feature = "AppKit_NSImage")]
#[method(setProjectPreviewImage:)]
pub unsafe fn setProjectPreviewImage(&self, preview_image: &NSImage);
#[method(removeAssets:)]
pub unsafe fn removeAssets(&self, assets: &ProtocolObject<dyn NSFastEnumeration>);
}
);
extern_methods!(
#[cfg(feature = "PhotoKit_PHProjectChangeRequest")]
unsafe impl PHProjectChangeRequest {
#[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>;
}
);