use core::cell::UnsafeCell;
use core::marker::{PhantomData, PhantomPinned};
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use crate::*;
#[repr(C)]
#[derive(Debug)]
pub struct GLKEffectPropertyPrv {
inner: [u8; 0],
_p: UnsafeCell<PhantomData<(*const UnsafeCell<()>, PhantomPinned)>>,
}
unsafe impl RefEncode for GLKEffectPropertyPrv {
const ENCODING_REF: Encoding =
Encoding::Pointer(&Encoding::Struct("GLKEffectPropertyPrv", &[]));
}
pub type GLKEffectPropertyPrvPtr = *mut GLKEffectPropertyPrv;
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct GLKEffectProperty;
);
extern_conformance!(
unsafe impl NSObjectProtocol for GLKEffectProperty {}
);
impl GLKEffectProperty {
extern_methods!();
}
impl GLKEffectProperty {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}