diff options
Diffstat (limited to 'gr-fec/lib/ldpc_H_matrix_impl.h')
-rw-r--r-- | gr-fec/lib/ldpc_H_matrix_impl.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gr-fec/lib/ldpc_H_matrix_impl.h b/gr-fec/lib/ldpc_H_matrix_impl.h index 67929a82a3..b4893ced7d 100644 --- a/gr-fec/lib/ldpc_H_matrix_impl.h +++ b/gr-fec/lib/ldpc_H_matrix_impl.h @@ -23,7 +23,6 @@ #include "fec_mtrx_impl.h" #include <gnuradio/fec/ldpc_H_matrix.h> -#include <gnuradio/fec/ldpc_G_matrix.h> namespace gr { namespace fec { @@ -79,8 +78,6 @@ namespace gr { */ const gsl_matrix *phi_inverse() const; - gr::fec::code::fec_mtrx *d_base_ptr; - public: /*! * \brief Constructor given alist file and gap @@ -112,15 +109,16 @@ namespace gr { //! Redefine these here as part of the public interface unsigned int k() const { return fec_mtrx_impl::k(); }; + gr::fec::code::fec_mtrx_sptr get_base_sptr(); + /*! * \brief Destructor * \details * Calls the gsl_matrix_free function to free memory */ virtual ~ldpc_H_matrix_impl(); - - gr::fec::code::fec_mtrx *get_base_ptr(); }; + } } } |