blob: 15a7f2cf1db86649a71796c0fd66f628b1551cb1 [file] [log] [blame]
Vasil Velichkov1828a312018-05-07 15:55:39 +03001/* -*- c++ -*- */
2/*
3 * @file
4 * @author (C) 2018 by Andrew Artyushok <loony.developer@gmail.com>
5 * @author (C) 2018 by Vasil Velichkov <vvvelichkov@gmail.com>
6 * @section LICENSE
7 *
8 * Gr-gsm is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3, or (at your option)
11 * any later version.
12 *
13 * Gr-gsm is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with gr-gsm; see the file COPYING. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street,
21 * Boston, MA 02110-1301, USA.
22 */
23
24
25#ifndef INCLUDED_GSM_TCH_H_CHANS_DEMAPPER_H
26#define INCLUDED_GSM_TCH_H_CHANS_DEMAPPER_H
27
28#include <grgsm/api.h>
29#include <gnuradio/block.h>
30
31namespace gr {
32 namespace gsm {
33
34 /*!
35 * \brief <+description of block+>
36 * \ingroup gsm
37 *
38 */
39 class GRGSM_API tch_h_chans_demapper : virtual public gr::block
40 {
41 public:
42 typedef boost::shared_ptr<tch_h_chans_demapper> sptr;
43
44 /*!
45 * \brief Return a shared_ptr to a new instance of gsm::tch_h_chans_demapper.
46 *
47 * To avoid accidental use of raw pointers, gsm::tch_h_chans_demapper's
48 * constructor is in a private implementation
49 * class. gsm::tch_h_chans_demapper::make is the public interface for
50 * creating new instances.
51 */
52 static sptr make(unsigned int timeslot_nr, unsigned int tch_h_channel);
53 };
54
55 } // namespace gsm
56} // namespace gr
57
58#endif /* INCLUDED_GSM_TCH_H_CHANS_DEMAPPER_H */
59