diff options
Diffstat (limited to 'tests/headers/dynamic_loading_with_class.hpp')
-rw-r--r-- | tests/headers/dynamic_loading_with_class.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/headers/dynamic_loading_with_class.hpp b/tests/headers/dynamic_loading_with_class.hpp new file mode 100644 index 00000000..632db4d0 --- /dev/null +++ b/tests/headers/dynamic_loading_with_class.hpp @@ -0,0 +1,15 @@ +// bindgen-flags: --dynamic-loading TestLib + +int foo(void *x); + +class A { + int _x; + + public: + A(int x); + + void some_function(); + void some_other_function(); +}; + +void bar(); |