autocommit 2022-05-01 17:23:55 CEST
This commit is contained in:
parent
4373ed05bf
commit
e1d5bf0e5d
39 changed files with 1772 additions and 57 deletions
18
src/it/test_ifs/test_compositor.rs
Normal file
18
src/it/test_ifs/test_compositor.rs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
use {
|
||||
crate::{
|
||||
it::{test_object::TestObject, test_transport::TestTransport},
|
||||
wire::WlCompositorId,
|
||||
},
|
||||
std::rc::Rc,
|
||||
};
|
||||
|
||||
pub struct TestCompositor {
|
||||
pub id: WlCompositorId,
|
||||
pub transport: Rc<TestTransport>,
|
||||
}
|
||||
|
||||
test_object! {
|
||||
TestCompositor, WlCompositor;
|
||||
}
|
||||
|
||||
impl TestObject for TestCompositor {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue