summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/swig/complex_vec_test.i
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/swig/complex_vec_test.i')
-rw-r--r--gnuradio-runtime/swig/complex_vec_test.i25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnuradio-runtime/swig/complex_vec_test.i b/gnuradio-runtime/swig/complex_vec_test.i
new file mode 100644
index 0000000000..4b95633be7
--- /dev/null
+++ b/gnuradio-runtime/swig/complex_vec_test.i
@@ -0,0 +1,25 @@
+
+std::vector<std::complex<float> >
+complex_vec_test0();
+
+std::vector<std::complex<float> >
+complex_vec_test1(const std::vector<std::complex<float> > &input);
+
+std::complex<float>
+complex_scalar_test0();
+
+std::complex<float>
+complex_scalar_test1(std::complex<float> input);
+
+std::vector<int>
+int_vec_test0();
+
+std::vector<int>
+int_vec_test1(const std::vector<int> &input);
+
+std::vector<float>
+float_vec_test0();
+
+std::vector<float>
+float_vec_test1(const std::vector<float> &input);
+