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
211 B
C++
16 lines
211 B
C++
template<typename T>
|
|
struct nsTArray {
|
|
int x;
|
|
};
|
|
/**
|
|
* <div rustbindgen replaces="nsTArray"></div>
|
|
*/
|
|
template<typename T>
|
|
struct nsTArray_Simple {
|
|
unsigned int y;
|
|
};
|
|
|
|
struct Test {
|
|
nsTArray<long> a;
|
|
};
|