diff options
Diffstat (limited to 'gnuradio-runtime/lib/complex_vec_test.h')
-rw-r--r-- | gnuradio-runtime/lib/complex_vec_test.h | 28 |
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); + |