File tree Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -177,9 +177,29 @@ macro_rules! qmetaobject_lazy_static { ($($t:tt)*) => { lazy_static!($($t)*) } }
177
177
use std:: cell:: RefCell ;
178
178
use std:: os:: raw:: { c_char, c_void} ;
179
179
180
- pub mod qttypes;
180
+ pub use itemmodel:: * ;
181
+ pub use listmodel:: * ;
182
+ pub use crate :: log:: * ;
183
+ pub use qtdeclarative:: * ;
184
+ pub use qmetatype:: * ;
185
+ pub use connections:: RustSignal ;
186
+ pub use connections:: { connect, CppSignal , SignalCppRepresentation } ;
187
+ pub use qtquickcontrols2:: * ;
188
+ pub use future:: * ;
181
189
pub use qttypes:: * ;
182
190
191
+ pub mod itemmodel;
192
+ pub mod listmodel;
193
+ pub mod log;
194
+ pub mod qtdeclarative;
195
+ pub mod qmetatype;
196
+ pub mod qrc;
197
+ pub mod connections;
198
+ pub mod qtquickcontrols2;
199
+ pub mod scenegraph;
200
+ pub mod future;
201
+ pub mod qttypes;
202
+
183
203
cpp ! { {
184
204
#include <qmetaobject_rust. hpp>
185
205
} }
@@ -1004,23 +1024,3 @@ pub const USER_ROLE: i32 = 0x0100;
1004
1024
/// [`$CARGO_MANIFEST_DIR`]: https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
1005
1025
pub use qmetaobject_impl:: qrc_internal as qrc;
1006
1026
// XXX: The line above re-exports the macro with proper documentation and doctests.
1007
-
1008
- pub mod itemmodel;
1009
- pub use itemmodel:: * ;
1010
- pub mod listmodel;
1011
- pub use listmodel:: * ;
1012
- pub mod log;
1013
- pub use crate :: log:: * ;
1014
- pub mod qtdeclarative;
1015
- pub use qtdeclarative:: * ;
1016
- pub mod qmetatype;
1017
- pub use qmetatype:: * ;
1018
- pub mod qrc;
1019
- pub mod connections;
1020
- pub use connections:: RustSignal ;
1021
- pub use connections:: { connect, CppSignal , SignalCppRepresentation } ;
1022
- pub mod qtquickcontrols2;
1023
- pub mod scenegraph;
1024
- pub use qtquickcontrols2:: * ;
1025
- pub mod future;
1026
- pub use future:: * ;
You can’t perform that action at this time.
0 commit comments