diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-17 21:31:47 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-17 21:31:47 -0400 |
commit | cabdafcb55423b54b63b711c942d4438b6af1a65 (patch) | |
tree | 4130dbe4ef3f3814baad5e6d7a6f65c19add0657 /gr-blocks/include/blocks | |
parent | 35e94fb8f4f3ead626f6ed28385148475773afc7 (diff) |
cleaning up, converting examples, etc.
Diffstat (limited to 'gr-blocks/include/blocks')
-rw-r--r-- | gr-blocks/include/blocks/annotator_raw.h | 2 | ||||
-rw-r--r-- | gr-blocks/include/blocks/control_loop.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/include/blocks/annotator_raw.h b/gr-blocks/include/blocks/annotator_raw.h index e835f0bd8d..ae273c2a46 100644 --- a/gr-blocks/include/blocks/annotator_raw.h +++ b/gr-blocks/include/blocks/annotator_raw.h @@ -48,7 +48,7 @@ namespace gr { static sptr make(size_t sizeof_stream_item); // insert a tag to be added - void add_tag(uint64_t offset, pmt::pmt_t key, pmt::pmt_t val); + virtual void add_tag(uint64_t offset, pmt::pmt_t key, pmt::pmt_t val) = 0; }; } /* namespace blocks */ diff --git a/gr-blocks/include/blocks/control_loop.h b/gr-blocks/include/blocks/control_loop.h index 475b28f944..7c09f5915b 100644 --- a/gr-blocks/include/blocks/control_loop.h +++ b/gr-blocks/include/blocks/control_loop.h @@ -99,7 +99,7 @@ namespace gr { * * \param bw (float) new bandwidth */ - void set_loop_bandwidth(float bw); + virtual void set_loop_bandwidth(float bw); /*! * \brief Set the loop damping factor |