1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Take a look at the license at the top of the repository in the LICENSE file.
pub mod content_provider;
pub mod paintable;
pub mod prelude {
#[doc(hidden)]
pub use gio::subclass::prelude::*;
#[doc(hidden)]
pub use glib::subclass::prelude::*;
pub use super::content_provider::{ContentProviderImpl, ContentProviderImplExt};
pub use super::paintable::{PaintableImpl, PaintableImplExt};
}