use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
pub type DOMTimeStamp = c_ulonglong;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "WebScriptObject")]
#[deprecated]
pub struct DOMObject;
#[cfg(feature = "WebScriptObject")]
unsafe impl ClassType for DOMObject {
#[inherits(NSObject)]
type Super = WebScriptObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "WebScriptObject")]
unsafe impl NSCopying for DOMObject {}
#[cfg(feature = "WebScriptObject")]
unsafe impl NSObjectProtocol for DOMObject {}
extern_methods!(
#[cfg(feature = "WebScriptObject")]
unsafe impl DOMObject {
#[deprecated]
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
}
);
extern_methods!(
#[cfg(feature = "WebScriptObject")]
unsafe impl DOMObject {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Retained<Self>;
}
);
extern_methods!(
#[cfg(feature = "WebScriptObject")]
unsafe impl DOMObject {
#[cfg(feature = "DOMStyleSheet")]
#[method_id(@__retain_semantics Other sheet)]
pub unsafe fn sheet(&self) -> Option<Retained<DOMStyleSheet>>;
}
);