diff options
Diffstat (limited to 'numpy/distutils/tests/swig_ext/src/zoo.h')
-rw-r--r-- | numpy/distutils/tests/swig_ext/src/zoo.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/numpy/distutils/tests/swig_ext/src/zoo.h b/numpy/distutils/tests/swig_ext/src/zoo.h new file mode 100644 index 000000000..cb26e6cef --- /dev/null +++ b/numpy/distutils/tests/swig_ext/src/zoo.h @@ -0,0 +1,9 @@ + +class Zoo{ + int n; + char animals[10][50]; +public: + Zoo(); + void shut_up(char *animal); + void display(); +}; |