diff options
Diffstat (limited to 'bindgen-tests/tests/headers/gen-constructors.hpp')
-rw-r--r-- | bindgen-tests/tests/headers/gen-constructors.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/gen-constructors.hpp b/bindgen-tests/tests/headers/gen-constructors.hpp new file mode 100644 index 00000000..809d6ef9 --- /dev/null +++ b/bindgen-tests/tests/headers/gen-constructors.hpp @@ -0,0 +1,6 @@ +// bindgen-flags: --generate types,constructors,functions + +class Foo { + public: + Foo(int a); +}; |