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
12 lines
151 B
C++
12 lines
151 B
C++
// bindgen-flags: -- -std=c++11
|
|
|
|
template<typename T>
|
|
class Point {
|
|
T x;
|
|
T y;
|
|
};
|
|
|
|
typedef Point<int> IntPoint2D;
|
|
|
|
using IntVec2D = Point<int>;
|