use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use crate::*;
extern_class!(
#[unsafe(super(HMEvent, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "HMEvent")]
pub struct HMTimeEvent;
);
#[cfg(feature = "HMEvent")]
unsafe impl Send for HMTimeEvent {}
#[cfg(feature = "HMEvent")]
unsafe impl Sync for HMTimeEvent {}
#[cfg(feature = "HMEvent")]
extern_conformance!(
unsafe impl NSObjectProtocol for HMTimeEvent {}
);
#[cfg(feature = "HMEvent")]
impl HMTimeEvent {
extern_methods!();
}
#[cfg(feature = "HMEvent")]
impl HMTimeEvent {
extern_methods!(
#[deprecated = "HMEvent is abstract"]
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[deprecated = "HMEvent is abstract"]
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}