summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/vector_to_streams.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/vector_to_streams.h')
-rw-r--r--gr-blocks/include/gnuradio/blocks/vector_to_streams.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/vector_to_streams.h b/gr-blocks/include/gnuradio/blocks/vector_to_streams.h
index 42ec114498..406f735c4f 100644
--- a/gr-blocks/include/gnuradio/blocks/vector_to_streams.h
+++ b/gr-blocks/include/gnuradio/blocks/vector_to_streams.h
@@ -27,29 +27,29 @@
#include <gnuradio/sync_block.h>
namespace gr {
- namespace blocks {
+namespace blocks {
+
+/*!
+ * \brief Convert 1 stream of vectors of length N to N streams of items
+ * \ingroup stream_operators_blk
+ */
+class BLOCKS_API vector_to_streams : virtual public sync_block
+{
+public:
+ // gr::blocks::vector_to_streams::sptr
+ typedef boost::shared_ptr<vector_to_streams> sptr;
/*!
- * \brief Convert 1 stream of vectors of length N to N streams of items
- * \ingroup stream_operators_blk
+ * Make vector-to-streams block
+ *
+ * \param itemsize the item size of the stream
+ * \param nstreams number of items per vector (vector size and
+ * number of streams produced)
*/
- class BLOCKS_API vector_to_streams : virtual public sync_block
- {
- public:
- // gr::blocks::vector_to_streams::sptr
- typedef boost::shared_ptr<vector_to_streams> sptr;
-
- /*!
- * Make vector-to-streams block
- *
- * \param itemsize the item size of the stream
- * \param nstreams number of items per vector (vector size and
- * number of streams produced)
- */
- static sptr make(size_t itemsize, size_t nstreams);
- };
+ static sptr make(size_t itemsize, size_t nstreams);
+};
- } /* namespace blocks */
+} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_BLOCKS_VECTOR_TO_STREAMS_H */