bindgen 0.20.0

A binding generator for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: -- -std=c++11

template<typename T>
class Point {
    T x;
    T y;
};

typedef Point<int> IntPoint2D;

using IntVec2D = Point<int>;