diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-30 12:58:22 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-30 12:58:22 -0700 |
commit | 02b89c6174b776acd2865443fbc19649b8b0e7d0 (patch) | |
tree | 9cc1da754cd7252212fe2d14ac4afe73275f5e38 /gr-trellis/include/trellis/encoder_XX.h.t | |
parent | 5e17e3ea05631c9d1e47ae601859008e9c1f6be9 (diff) |
trellis: moved include dir to gnuradio/trellis
Diffstat (limited to 'gr-trellis/include/trellis/encoder_XX.h.t')
-rw-r--r-- | gr-trellis/include/trellis/encoder_XX.h.t | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/gr-trellis/include/trellis/encoder_XX.h.t b/gr-trellis/include/trellis/encoder_XX.h.t deleted file mode 100644 index 3901797204..0000000000 --- a/gr-trellis/include/trellis/encoder_XX.h.t +++ /dev/null @@ -1,54 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2004,2012 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, - * Boston, MA 02110-1301, USA. - */ - -// @WARNING@ - -#ifndef @GUARD_NAME@ -#define @GUARD_NAME@ - -#include <trellis/api.h> -#include <trellis/fsm.h> -#include <gnuradio/sync_block.h> - -namespace gr { - namespace trellis { - - /*! - * \brief Convolutional encoder. - * \ingroup trellis_coding_blk - */ - class TRELLIS_API @NAME@ : virtual public sync_block - { - public: - // gr::trellis::@BASE_NAME@::sptr - typedef boost::shared_ptr<@BASE_NAME@> sptr; - - static sptr make(const fsm &FSM, int ST); - - virtual fsm FSM() const = 0; - virtual int ST() const = 0; - }; - - } /* namespace trellis */ -} /* namespace gr */ - -#endif /* @GUARD_NAME@ */ |