diff options
Diffstat (limited to 'gr-blocks/lib/interleave_impl.h')
-rw-r--r-- | gr-blocks/lib/interleave_impl.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gr-blocks/lib/interleave_impl.h b/gr-blocks/lib/interleave_impl.h index c74127fca5..a54dfe7e78 100644 --- a/gr-blocks/lib/interleave_impl.h +++ b/gr-blocks/lib/interleave_impl.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2012 Free Software Foundation, Inc. + * Copyright 2012,2014 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -33,9 +33,11 @@ namespace gr { size_t d_itemsize; unsigned int d_blocksize; unsigned int d_ninputs; + bool d_set_rel_rate; public: - interleave_impl(size_t itemsize, unsigned int blocksize); + interleave_impl(size_t itemsize, unsigned int blocksize, + bool set_rel_rate=true); bool check_topology(int ninputs, int noutputs); @@ -58,6 +60,6 @@ namespace gr { } /* namespace blocks */ } /* namespace gr */ - + #endif /* INCLUDED_INTERLEAVE_IMPL_H */ |