gobject_subclass/lib.rs
1// Copyright (C) 2016-2017 Sebastian Dröge <sebastian@centricular.com>
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8
9extern crate glib_sys as glib_ffi;
10extern crate gobject_sys as gobject_ffi;
11
12extern crate libc;
13
14#[macro_use]
15pub extern crate glib;
16
17#[macro_use]
18pub mod anyimpl;
19
20#[macro_use]
21pub mod guard;
22
23pub mod properties;
24#[macro_use]
25pub mod object;
26
27#[macro_use]
28mod deref;