rust_macios/appkit/
ns_responder.rs

1use crate::{object, objective_c_runtime::traits::PNSObject};
2
3use super::interface_impl;
4
5object! {
6    /// An abstract class that forms the basis of event and command processing
7    /// in AppKit.
8    unsafe pub struct NSResponder;
9}
10
11#[interface_impl(NSObject)]
12impl NSResponder {}