#![no_std]
#![cfg_attr(feature = "unstable-darwin-objc", feature(darwin_objc))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/objc2-ui-kit/0.3.2")]
#![recursion_limit = "256"]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
#[cfg(feature = "UIApplication")]
mod application;
#[cfg(feature = "UIView")]
mod coordinate_space;
mod generated;
#[cfg(feature = "UIGeometry")]
mod geometry;
#[cfg(feature = "UIGestureRecognizer")]
mod gesture_recognizer;
#[cfg(feature = "UIImage")]
mod image;
#[cfg(feature = "UIPasteConfigurationSupporting")]
mod paste_configuration;
#[cfg(feature = "UIResponder")]
mod responder;
#[cfg(test)]
mod tests;
#[cfg(feature = "NSText")]
mod text;
#[cfg(feature = "UIView")]
pub use self::coordinate_space::*;
#[allow(unused_imports, unreachable_pub)]
pub use self::generated::*;
#[cfg(feature = "UIGeometry")]
pub use self::geometry::*;
#[cfg(feature = "UIResponder")]
pub use self::responder::*;
#[allow(unused)]
#[allow(unexpected_cfgs)]
pub(crate) const TARGET_ABI_USES_IOS_VALUES: bool = !cfg!(target_arch = "x86_64")
|| (cfg!(all(target_vendor = "apple", not(target_os = "macos")))
&& !cfg!(target_env = "macabi"));