diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/vector_to_stream.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/vector_to_stream.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/vector_to_stream.h b/gr-blocks/include/gnuradio/blocks/vector_to_stream.h index f1b919d218..67b40f4f4f 100644 --- a/gr-blocks/include/gnuradio/blocks/vector_to_stream.h +++ b/gr-blocks/include/gnuradio/blocks/vector_to_stream.h @@ -27,28 +27,28 @@ #include <gnuradio/sync_interpolator.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief convert a stream of gnuradio/blocks of nitems_per_block items into a stream of + * items \ingroup stream_operators_blk + */ +class BLOCKS_API vector_to_stream : virtual public sync_interpolator +{ +public: + // gr::blocks::vector_to_stream::sptr + typedef boost::shared_ptr<vector_to_stream> sptr; /*! - * \brief convert a stream of gnuradio/blocks of nitems_per_block items into a stream of items - * \ingroup stream_operators_blk + * Make vector-to-stream block + * + * \param itemsize the item size of the stream + * \param nitems_per_block number of items per vector (vector size) */ - class BLOCKS_API vector_to_stream : virtual public sync_interpolator - { - public: - // gr::blocks::vector_to_stream::sptr - typedef boost::shared_ptr<vector_to_stream> sptr; - - /*! - * Make vector-to-stream block - * - * \param itemsize the item size of the stream - * \param nitems_per_block number of items per vector (vector size) - */ - static sptr make(size_t itemsize, size_t nitems_per_block); - }; + static sptr make(size_t itemsize, size_t nitems_per_block); +}; - } /* namespace blocks */ +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_BLOCKS_VECTOR_TO_STREAM_H */ |