diff options
Diffstat (limited to 'gr-blocks/lib/pack_k_bits_bb_impl.h')
-rw-r--r-- | gr-blocks/lib/pack_k_bits_bb_impl.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gr-blocks/lib/pack_k_bits_bb_impl.h b/gr-blocks/lib/pack_k_bits_bb_impl.h index dfe859478c..38cf1e7517 100644 --- a/gr-blocks/lib/pack_k_bits_bb_impl.h +++ b/gr-blocks/lib/pack_k_bits_bb_impl.h @@ -1,19 +1,19 @@ /* -*- c++ -*- */ /* - * Copyright 2012-2013 Free Software Foundation, Inc. - * + * Copyright 2012-2014 Free Software Foundation, Inc. + * * This file is part of GNU Radio - * + * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. - * + * * GNU Radio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, @@ -24,6 +24,7 @@ #define INCLUDED_GR_PACK_K_BITS_BB_IMPL_H #include <gnuradio/blocks/pack_k_bits_bb.h> +#include <gnuradio/blocks/pack_k_bits.h> namespace gr { namespace blocks { @@ -32,7 +33,8 @@ namespace gr { { private: unsigned d_k; // number of relevent bits to pack from k input bytes - + kernel::pack_k_bits *d_pack; + public: pack_k_bits_bb_impl(unsigned k); ~pack_k_bits_bb_impl(); |