slint/sixtyfps_compiler/generator.rs
Olivier Goffart cc170d1d76 More comments
2020-05-11 09:00:21 +02:00

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));
}