use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSPersistentHistoryToken;
unsafe impl ClassType for NSPersistentHistoryToken {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
unsafe impl NSCoding for NSPersistentHistoryToken {}
unsafe impl NSCopying for NSPersistentHistoryToken {}
unsafe impl NSObjectProtocol for NSPersistentHistoryToken {}
unsafe impl NSSecureCoding for NSPersistentHistoryToken {}
extern_methods!(
unsafe impl NSPersistentHistoryToken {}
);
extern_methods!(
unsafe impl NSPersistentHistoryToken {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Retained<Self>;
}
);