diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/rotator_cc.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/rotator_cc.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/rotator_cc.h b/gr-blocks/include/gnuradio/blocks/rotator_cc.h index 0697eeb19b..650ab73991 100644 --- a/gr-blocks/include/gnuradio/blocks/rotator_cc.h +++ b/gr-blocks/include/gnuradio/blocks/rotator_cc.h @@ -27,28 +27,28 @@ #include <gnuradio/sync_block.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief Complex rotator + * \ingroup math_operators_blk + */ +class BLOCKS_API rotator_cc : virtual public sync_block +{ +public: + // gr::blocks::rotator_cc::sptr + typedef boost::shared_ptr<rotator_cc> sptr; /*! - * \brief Complex rotator - * \ingroup math_operators_blk + * \brief Make an complex rotator block + * \param phase_inc rotational velocity */ - class BLOCKS_API rotator_cc : virtual public sync_block - { - public: - // gr::blocks::rotator_cc::sptr - typedef boost::shared_ptr<rotator_cc> sptr; - - /*! - * \brief Make an complex rotator block - * \param phase_inc rotational velocity - */ - static sptr make(double phase_inc = 0.0); - - virtual void set_phase_inc(double phase_inc) = 0; - }; - - } /* namespace blocks */ + static sptr make(double phase_inc = 0.0); + + virtual void set_phase_inc(double phase_inc) = 0; +}; + +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_BLOCKS_ROTATOR_CC_H */ |