diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-03-26 20:18:53 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-03-26 20:18:53 -0700 |
commit | 26dceecc80390f10cedb94bd9e4fd655827d7f17 (patch) | |
tree | f88cb2995133048b4a2191bae688fa09b33a19ae /gnuradio-runtime/lib/complex_vec_test.h | |
parent | 9bbbda510c265b211b5b571db79ba259c67ee049 (diff) |
runtime: migrate remaining gnuradio-core contents into gnuradio-runtime
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); + |