summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/endian_swap.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/endian_swap.h')
-rw-r--r--gr-blocks/include/gnuradio/blocks/endian_swap.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/endian_swap.h b/gr-blocks/include/gnuradio/blocks/endian_swap.h
index 379ee734c7..91338e718c 100644
--- a/gr-blocks/include/gnuradio/blocks/endian_swap.h
+++ b/gr-blocks/include/gnuradio/blocks/endian_swap.h
@@ -27,28 +27,28 @@
#include <gnuradio/sync_block.h>
namespace gr {
- namespace blocks {
+namespace blocks {
+
+/*!
+ * \brief Convert stream of items into their byte swapped version
+ * \ingroup stream_operators_blk
+ */
+class BLOCKS_API endian_swap : virtual public sync_block
+{
+public:
+ // gr::blocks::endian_swap::sptr
+ typedef boost::shared_ptr<endian_swap> sptr;
/*!
- * \brief Convert stream of items into their byte swapped version
- * \ingroup stream_operators_blk
+ * Make an endian swap block.
+ *
+ * \param item_size_bytes number of bytes per item, 1=no-op,
+ * 2=uint16_t, 4=uint32_t, 8=uint64_t
*/
- class BLOCKS_API endian_swap : virtual public sync_block
- {
- public:
- // gr::blocks::endian_swap::sptr
- typedef boost::shared_ptr<endian_swap> sptr;
-
- /*!
- * Make an endian swap block.
- *
- * \param item_size_bytes number of bytes per item, 1=no-op,
- * 2=uint16_t, 4=uint32_t, 8=uint64_t
- */
- static sptr make(size_t item_size_bytes=1);
- };
+ static sptr make(size_t item_size_bytes = 1);
+};
- } /* namespace blocks */
+} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_GR_ENDIAN_SWAP_H */