-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support all types that CXX supports for C++ generation side #328
Comments
Could we get this exposed by upstream? |
Maybe, but they have already parsed the types into their own enum via syn. We would have to expose some API to get from our syn types to the theirs etc. |
Could be worth a discussion upstream though if something like the |
Note that CXX has it's own Effectively we need |
autocxx also has similar things in their code
|
Split out |
In the C++ generation we have to map Rust types to C++ types, here not all types have been mapped.
Some of the missing types
* const T
) needs to handle TypePtr (related Nested objects #367 Defining nested objects with the new API #299 )https://github.com/KDAB/cxx-qt/blob/main/crates/cxx-qt-gen/src/generator/cpp/types.rs
The text was updated successfully, but these errors were encountered: