diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-09-26 20:05:09 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-10-16 15:48:46 -0400 |
commit | 9bf9b47dc713f76a5a105ed274aa74ecb0568baa (patch) | |
tree | 6e416971f7d2a0a9459df1693970f8ba45138dc3 /gr-blocks/lib/multiply_const_vff_impl.h | |
parent | 616fee53793b55dcd36d4c78a7c12057b1a05839 (diff) |
ctrlport: blocks: added controlport support to multiply_const_XXX blocks.
Diffstat (limited to 'gr-blocks/lib/multiply_const_vff_impl.h')
-rw-r--r-- | gr-blocks/lib/multiply_const_vff_impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-blocks/lib/multiply_const_vff_impl.h b/gr-blocks/lib/multiply_const_vff_impl.h index 4fda2a831e..ca555669ed 100644 --- a/gr-blocks/lib/multiply_const_vff_impl.h +++ b/gr-blocks/lib/multiply_const_vff_impl.h @@ -36,6 +36,8 @@ namespace gr { public: multiply_const_vff_impl(std::vector<float> k); + void setup_rpc(); + std::vector<float> k() const { return d_k; } void set_k(std::vector<float> k) { d_k = k; } |