GNU Radio 3.7.0 C++ API
sccc_decoder_combined_fs.h
Go to the documentation of this file.
00001 /* -*- c++ -*- */
00002 /*
00003  * Copyright 2004,2012 Free Software Foundation, Inc.
00004  *
00005  * This file is part of GNU Radio
00006  *
00007  * GNU Radio is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 3, or (at your option)
00010  * any later version.
00011  *
00012  * GNU Radio is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License
00018  * along with GNU Radio; see the file COPYING.  If not, write to
00019  * the Free Software Foundation, Inc., 51 Franklin Street,
00020  * Boston, MA 02110-1301, USA.
00021  */
00022 
00023 // WARNING: this file is machine generated. Edits will be overwritten
00024 
00025 #ifndef INCLUDED_TRELLIS_SCCC_DECODER_COMBINED_FS_H
00026 #define INCLUDED_TRELLIS_SCCC_DECODER_COMBINED_FS_H
00027 
00028 #include <gnuradio/trellis/api.h>
00029 #include <gnuradio/trellis/fsm.h>
00030 #include <gnuradio/trellis/interleaver.h>
00031 #include <gnuradio/trellis/calc_metric.h>
00032 #include <gnuradio/trellis/siso_type.h>
00033 #include <gnuradio/block.h>
00034 #include <vector>
00035 
00036 namespace gr {
00037   namespace trellis {
00038 
00039     /*!
00040      *  \ingroup trellis_coding_blk
00041      */
00042     class TRELLIS_API sccc_decoder_combined_fs : virtual public block
00043     {
00044     public:
00045       // gr::trellis::sccc_decoder_combined_fs::sptr
00046       typedef boost::shared_ptr<sccc_decoder_combined_fs> sptr;
00047 
00048       static sptr make(const fsm &FSMo, int STo0, int SToK,
00049                        const fsm &FSMi, int STi0, int STiK,
00050                        const interleaver &INTERLEAVER,
00051                        int blocklength,
00052                        int repetitions,
00053                        siso_type_t SISO_TYPE,
00054                        int D,
00055                        const std::vector<float> &TABLE,
00056                        digital::trellis_metric_type_t METRIC_TYPE,
00057                        float scaling);
00058 
00059       virtual fsm FSMo() const = 0;
00060       virtual fsm FSMi() const = 0;
00061       virtual int STo0() const = 0;
00062       virtual int SToK() const = 0;
00063       virtual int STi0() const = 0;
00064       virtual int STiK() const = 0;
00065       virtual interleaver INTERLEAVER() const = 0;
00066       virtual int blocklength() const = 0;
00067       virtual int repetitions() const = 0;
00068       virtual int D() const = 0;
00069       virtual std::vector<float> TABLE() const = 0;
00070       virtual digital::trellis_metric_type_t METRIC_TYPE() const = 0;
00071       virtual siso_type_t SISO_TYPE() const = 0;
00072       virtual float scaling() const  = 0;
00073       virtual void set_scaling(float scaling) = 0;
00074     };
00075 
00076   } /* namespace trellis */
00077 } /* namespace gr */
00078 
00079 #endif /* INCLUDED_TRELLIS_SCCC_DECODER_COMBINED_FS_H */