#![warn(elided_lifetimes_in_paths)]
#![deny(non_ascii_idents)]
#![warn(unreachable_pub)]
#![deny(unsafe_op_in_unsafe_fn)]
#![warn(clippy::cargo)]
#![warn(clippy::ptr_as_ptr)]
#![doc(html_root_url = "https://docs.rs/apinotes/0.0.2")]
#[cfg(test)]
mod clang_tests;
mod error;
mod general;
mod map_helper;
mod method_and_property;
mod mid_level;
mod top_level;
pub use self::error::Error;
pub use self::general::*;
pub use self::map_helper::Map;
pub use self::method_and_property::*;
pub use self::mid_level::*;
pub use self::top_level::*;
pub const EXTENSION: &str = "apinotes";