summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/complex_to_imag.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/complex_to_imag.h')
-rw-r--r--gr-blocks/include/gnuradio/blocks/complex_to_imag.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/complex_to_imag.h b/gr-blocks/include/gnuradio/blocks/complex_to_imag.h
index 1311fa4dc2..95a060f8ea 100644
--- a/gr-blocks/include/gnuradio/blocks/complex_to_imag.h
+++ b/gr-blocks/include/gnuradio/blocks/complex_to_imag.h
@@ -27,27 +27,27 @@
#include <gnuradio/sync_block.h>
namespace gr {
- namespace blocks {
+namespace blocks {
+
+/*!
+ * \brief Produces the imaginary part (as a float0 of a complex stream.
+ * \ingroup type_converters_blk
+ */
+class BLOCKS_API complex_to_imag : virtual public sync_block
+{
+public:
+ // gr::blocks::complex_to_imag_ff::sptr
+ typedef boost::shared_ptr<complex_to_imag> sptr;
/*!
- * \brief Produces the imaginary part (as a float0 of a complex stream.
- * \ingroup type_converters_blk
+ * Build a complex to imaginary part block.
+ *
+ * \param vlen vector len (default 1)
*/
- class BLOCKS_API complex_to_imag : virtual public sync_block
- {
- public:
- // gr::blocks::complex_to_imag_ff::sptr
- typedef boost::shared_ptr<complex_to_imag> sptr;
-
- /*!
- * Build a complex to imaginary part block.
- *
- * \param vlen vector len (default 1)
- */
- static sptr make(size_t vlen=1);
- };
+ static sptr make(size_t vlen = 1);
+};
- } /* namespace blocks */
+} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_BLOCKS_COMPLEX_TO_IMAG_H */