diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/interleaved_char_to_complex.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/interleaved_char_to_complex.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/interleaved_char_to_complex.h b/gr-blocks/include/gnuradio/blocks/interleaved_char_to_complex.h index 53a77e7cd0..29b2d14699 100644 --- a/gr-blocks/include/gnuradio/blocks/interleaved_char_to_complex.h +++ b/gr-blocks/include/gnuradio/blocks/interleaved_char_to_complex.h @@ -27,25 +27,25 @@ #include <gnuradio/sync_decimator.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief Convert stream of interleaved chars to a stream of complex + * \ingroup type_converters_blk + */ +class BLOCKS_API interleaved_char_to_complex : virtual public sync_decimator +{ +public: + // gr::blocks::interleaved_char_to_complex::sptr + typedef boost::shared_ptr<interleaved_char_to_complex> sptr; /*! - * \brief Convert stream of interleaved chars to a stream of complex - * \ingroup type_converters_blk + * Build an interleaved char to complex block. */ - class BLOCKS_API interleaved_char_to_complex : virtual public sync_decimator - { - public: - // gr::blocks::interleaved_char_to_complex::sptr - typedef boost::shared_ptr<interleaved_char_to_complex> sptr; - - /*! - * Build an interleaved char to complex block. - */ - static sptr make(bool vector_input=false); - }; + static sptr make(bool vector_input = false); +}; - } /* namespace blocks */ +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_BLOCKS_INTERLEAVED_CHAR_TO_COMPLEX_H */ |