diff options
author | 2022-06-21 15:59:45 -0300 | |
---|---|---|
committer | 2023-01-09 11:27:04 -0800 | |
commit | ec56c0686df1a200e37af951a3a8eca562c32a5c (patch) | |
tree | db24f45a8c3ec6288b470ea4194ad2654c1e8068 /native/src/window.rs | |
parent | 8fdd5ee8b60e551088d4a18fb1d58b6c3e62ba7d (diff) | |
download | iced-ec56c0686df1a200e37af951a3a8eca562c32a5c.tar.gz iced-ec56c0686df1a200e37af951a3a8eca562c32a5c.tar.bz2 iced-ec56c0686df1a200e37af951a3a8eca562c32a5c.zip |
Introduce opaque `window::Id` type
Diffstat (limited to 'native/src/window.rs')
-rw-r--r-- | native/src/window.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs index 1b97e655..dc9e2d66 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -1,10 +1,12 @@ //! Build window-based GUI applications. mod action; mod event; +mod id; mod mode; mod user_attention; pub use action::Action; pub use event::Event; +pub use id::Id; pub use mode::Mode; pub use user_attention::UserAttention; |