diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/multiply_conjugate_cc.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/multiply_conjugate_cc.h | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/multiply_conjugate_cc.h b/gr-blocks/include/gnuradio/blocks/multiply_conjugate_cc.h index da032da3ed..ff1e799a44 100644 --- a/gr-blocks/include/gnuradio/blocks/multiply_conjugate_cc.h +++ b/gr-blocks/include/gnuradio/blocks/multiply_conjugate_cc.h @@ -27,28 +27,27 @@ #include <gnuradio/sync_block.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief Multiplies stream 0 by the complex conjugate of stream 1. + * \ingroup math_operators_blk + */ +class BLOCKS_API multiply_conjugate_cc : virtual public sync_block +{ +public: + // gr::blocks::multiply_conjugate_cc::sptr + typedef boost::shared_ptr<multiply_conjugate_cc> sptr; /*! - * \brief Multiplies stream 0 by the complex conjugate of stream 1. - * \ingroup math_operators_blk + * \brief Multiplies a streams by the conjugate of a second stream + * \param vlen Vector length + * \ingroup math_blk */ - class BLOCKS_API multiply_conjugate_cc : virtual public sync_block - { - public: - - // gr::blocks::multiply_conjugate_cc::sptr - typedef boost::shared_ptr<multiply_conjugate_cc> sptr; - - /*! - * \brief Multiplies a streams by the conjugate of a second stream - * \param vlen Vector length - * \ingroup math_blk - */ - static sptr make(size_t vlen=1); - }; + static sptr make(size_t vlen = 1); +}; - } /* namespace blocks */ +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_BLOCKS_MULTIPLY_CONJUGATE_CC_H */ |