diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/complex_to_float.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/complex_to_float.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/complex_to_float.h b/gr-blocks/include/gnuradio/blocks/complex_to_float.h index 40fcb729b4..11be9785ce 100644 --- a/gr-blocks/include/gnuradio/blocks/complex_to_float.h +++ b/gr-blocks/include/gnuradio/blocks/complex_to_float.h @@ -27,33 +27,33 @@ #include <gnuradio/sync_block.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief Convert a stream of gr_complex to 1 or 2 streams of float. + * \ingroup type_converters_blk + * + * \details + * If a single output stream is attached, this will output the + * real part of the input complex samples. If a second output + * stream is connected, output[0] is the real part and output[1] + * is the imaginary part. + */ +class BLOCKS_API complex_to_float : virtual public sync_block +{ +public: + // gr::blocks::complex_to_float_ff::sptr + typedef boost::shared_ptr<complex_to_float> sptr; /*! - * \brief Convert a stream of gr_complex to 1 or 2 streams of float. - * \ingroup type_converters_blk + * Build a complex to float block. * - * \details - * If a single output stream is attached, this will output the - * real part of the input complex samples. If a second output - * stream is connected, output[0] is the real part and output[1] - * is the imaginary part. + * \param vlen vector len (default 1) */ - class BLOCKS_API complex_to_float : virtual public 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); - }; + static sptr make(size_t vlen = 1); +}; - } /* namespace blocks */ +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_BLOCKS_COMPLEX_TO_FLOAT_H */ |