diff options
author | Tom Rondeau <trondeau@vt.edu> | 2010-11-04 18:30:17 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2010-11-04 18:30:17 -0400 |
commit | 7f6f2a377bf8bca6880ecc030792202e09b631a7 (patch) | |
tree | 83e6b8bc08235d00479a3b10b4865f518bed1a51 /gnuradio-core/src/lib/runtime/gr_buffer.h | |
parent | 70ca24e7cc6ba744589e3d5fb8077f706e813d28 (diff) |
gr_buffer_reader doesn't need to know which input it is.
Diffstat (limited to 'gnuradio-core/src/lib/runtime/gr_buffer.h')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_buffer.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_buffer.h b/gnuradio-core/src/lib/runtime/gr_buffer.h index e50f638b5a..6498ee296e 100644 --- a/gnuradio-core/src/lib/runtime/gr_buffer.h +++ b/gnuradio-core/src/lib/runtime/gr_buffer.h @@ -257,12 +257,10 @@ class gr_buffer_reader { * Tags are tuples of: * (item count, source id, key, value) * - * \param which_input an integer of which input stream to pull from * \param abs_start a uint64 count of the start of the range of interest * \param abs_end a uint64 count of the end of the range of interest */ - std::deque<pmt::pmt_t> get_tags_in_range(unsigned int which_input, - gr_uint64 abs_start, + std::deque<pmt::pmt_t> get_tags_in_range(gr_uint64 abs_start, gr_uint64 abs_end); // ------------------------------------------------------------------------- |