summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/complex_vec_test.h
diff options
context:
space:
mode:
authorBen Reynwar <ben@reynwar.net>2013-04-02 23:04:08 -0700
committerBen Reynwar <ben@reynwar.net>2013-04-02 23:04:08 -0700
commitc6dbde23b256a41b3d92cb4ad6b63287095d53c7 (patch)
tree71db12ea2e1667770c22568dcdf5e0857d5f1e59 /gnuradio-runtime/lib/complex_vec_test.h
parent22b70d0889ef3c51e27a31ee18d153093a55cbb8 (diff)
parent98758cbfa9a2aff714952d19e773bc370dfa2185 (diff)
Merged next into uninstalled import branch.
Diffstat (limited to 'gnuradio-runtime/lib/complex_vec_test.h')
-rw-r--r--gnuradio-runtime/lib/complex_vec_test.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/complex_vec_test.h b/gnuradio-runtime/lib/complex_vec_test.h
new file mode 100644
index 0000000000..bcfa732f41
--- /dev/null
+++ b/gnuradio-runtime/lib/complex_vec_test.h
@@ -0,0 +1,28 @@
+#include <gr_runtime_api.h>
+#include <vector>
+#include <complex>
+
+GR_RUNTIME_API std::vector<std::complex<float> >
+complex_vec_test0();
+
+GR_RUNTIME_API std::vector<std::complex<float> >
+complex_vec_test1(const std::vector<std::complex<float> > &input);
+
+GR_RUNTIME_API std::complex<float>
+complex_scalar_test0();
+
+GR_RUNTIME_API std::complex<float>
+complex_scalar_test1(std::complex<float> input);
+
+GR_RUNTIME_API std::vector<int>
+int_vec_test0();
+
+GR_RUNTIME_API std::vector<int>
+int_vec_test1(const std::vector<int> &input);
+
+GR_RUNTIME_API std::vector<float>
+float_vec_test0();
+
+GR_RUNTIME_API std::vector<float>
+float_vec_test1(const std::vector<float> &input);
+