diff options
Diffstat (limited to 'gr-blocks/include/blocks/complex_to_float.h')
-rw-r--r-- | gr-blocks/include/blocks/complex_to_float.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gr-blocks/include/blocks/complex_to_float.h b/gr-blocks/include/blocks/complex_to_float.h index 322f67b624..7648648d6c 100644 --- a/gr-blocks/include/blocks/complex_to_float.h +++ b/gr-blocks/include/blocks/complex_to_float.h @@ -31,16 +31,19 @@ namespace gr { /*! * \brief convert a stream of gr_complex to 1 or 2 streams of float - * \ingroup converter_blk - * \param vlen vector len (default 1) + * \ingroup type_converters_blk */ class BLOCKS_API complex_to_float : virtual public gr_sync_block { public: - // gr::blocks::complex_to_float_ff::sptr typedef boost::shared_ptr<complex_to_float> sptr; + /*! + * Build a complex to float block. + * + * \param vlen vector len (default 1) + */ static sptr make(size_t vlen=1); }; |