mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-07-22 15:35:27 -04:00
1213b3dfb1
remove `clap` dependency 🎉
update the book installation instructions
16 lines
477 B
C
16 lines
477 B
C
// bindgen-flags: --rustified-enum '.*Rustified.*' --constified-enum-module '.*Module.*' -- -x c++ --std=c++14
|
|
|
|
// Constified is default, so no flag for that.
|
|
|
|
enum EmptyConstified {};
|
|
enum EmptyRustified {};
|
|
enum EmptyModule {};
|
|
|
|
enum class EmptyClassRustified : char {};
|
|
enum class EmptyClassConstified : char {};
|
|
enum class EmptyClassModule : char {};
|
|
|
|
enum class ForwardClassRustified : char;
|
|
enum class ForwardClassConstified : char;
|
|
enum class ForwardClassModule : char;
|