aboutsummaryrefslogtreecommitdiff
path: root/rust/qom/src/lib.rs
blob: 24c44fc2afb50652f4945607c79fba75f2039f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0-or-later

pub use qemu_macros::Object;

pub mod bindings;

// preserve one-item-per-"use" syntax, it is clearer
// for prelude-like modules
#[rustfmt::skip]
pub mod prelude;

mod qom;
pub use qom::*;