diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/uchar_to_float.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/uchar_to_float.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/uchar_to_float.h b/gr-blocks/include/gnuradio/blocks/uchar_to_float.h index 2e22afe4da..99227b2291 100644 --- a/gr-blocks/include/gnuradio/blocks/uchar_to_float.h +++ b/gr-blocks/include/gnuradio/blocks/uchar_to_float.h @@ -27,25 +27,25 @@ #include <gnuradio/sync_block.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief Convert stream of unsigned chars to a stream of floats + * \ingroup type_converters_blk + */ +class BLOCKS_API uchar_to_float : virtual public sync_block +{ +public: + // gr::blocks::uchar_to_float_ff::sptr + typedef boost::shared_ptr<uchar_to_float> sptr; /*! - * \brief Convert stream of unsigned chars to a stream of floats - * \ingroup type_converters_blk + * Build a uchar to float block. */ - class BLOCKS_API uchar_to_float : virtual public sync_block - { - public: - // gr::blocks::uchar_to_float_ff::sptr - typedef boost::shared_ptr<uchar_to_float> sptr; - - /*! - * Build a uchar to float block. - */ - static sptr make(); - }; + static sptr make(); +}; - } /* namespace blocks */ +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_BLOCKS_UCHAR_TO_FLOAT_H */ |