2022-09-02 18:46:18 +02:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2022-09-02 21:02:40 +02:00
|
|
|
// Objective-C methods have different conventions, and it's much easier to
|
|
|
|
|
// understand if we just use the same names
|
|
|
|
|
#![allow(non_snake_case)]
|
2022-09-02 18:46:18 +02:00
|
|
|
|
|
|
|
|
mod application;
|
2022-09-02 21:02:40 +02:00
|
|
|
mod cursor;
|
|
|
|
|
mod image;
|
2022-09-02 18:46:18 +02:00
|
|
|
mod responder;
|
|
|
|
|
mod view;
|
|
|
|
|
mod window;
|
|
|
|
|
|
|
|
|
|
pub(crate) use self::application::NSApplication;
|
2022-09-02 21:02:40 +02:00
|
|
|
pub(crate) use self::cursor::NSCursor;
|
|
|
|
|
pub(crate) use self::image::NSImage;
|
2022-09-02 18:46:18 +02:00
|
|
|
pub(crate) use self::responder::NSResponder;
|
|
|
|
|
pub(crate) use self::view::NSView;
|
|
|
|
|
pub(crate) use self::window::NSWindow;
|