summaryrefslogtreecommitdiff
path: root/gr-blocks/include/blocks/float_to_short.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/include/blocks/float_to_short.h')
-rw-r--r--gr-blocks/include/blocks/float_to_short.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/gr-blocks/include/blocks/float_to_short.h b/gr-blocks/include/blocks/float_to_short.h
index 5f1ab3f958..8f5f60e55b 100644
--- a/gr-blocks/include/blocks/float_to_short.h
+++ b/gr-blocks/include/blocks/float_to_short.h
@@ -31,18 +31,20 @@ namespace gr {
/*!
* \brief Convert stream of floats to a stream of shorts
- * \ingroup converter_blk
- *
- * \param vlen vector length of data streams.
- * \param scale a scalar multiplier to change the output signal scale.
+ * \ingroup type_converters_blk
*/
class BLOCKS_API float_to_short : virtual public gr_sync_block
{
public:
-
// gr::blocks::float_to_short_ff::sptr
typedef boost::shared_ptr<float_to_short> sptr;
+ /*!
+ * Build a float to short block.
+ *
+ * \param vlen vector length of data streams.
+ * \param scale a scalar multiplier to change the output signal scale.
+ */
static sptr make(size_t vlen=1, float scale=1.0);
/*!