mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 05:14:48 +00:00
11 lines
220 B
Rust
11 lines
220 B
Rust
/*!
|
|
The module responsible for the code generation.
|
|
|
|
There is one sub module for every language
|
|
*/
|
|
|
|
mod cpp;
|
|
|
|
pub fn generate(component: &crate::lower::LoweredComponent) {
|
|
println!("{}", cpp::generate(component));
|
|
}
|