blob: 874c0b68d848ffd03951bbaffd8c08639e5a991f [file] [log] [blame]
Piotr Krysik2bb54c82016-08-16 16:05:23 +02001/* -*- c++ -*- */
2/* @file
Piotr Krysika6268a52017-08-23 16:02:19 +02003 * @author (C) 2016 by Piotr Krysik <ptrkrysik@gmail.com>
Piotr Krysik2bb54c82016-08-16 16:05:23 +02004 * @section LICENSE
5 *
6 * Gr-gsm is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3, or (at your option)
9 * any later version.
10 *
11 * Gr-gsm is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with gr-gsm; see the file COPYING. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street,
19 * Boston, MA 02110-1301, USA.
20 *
21 */
22
23
Piotr Krysika3405b22016-08-30 21:31:24 +020024#ifndef INCLUDED_GRGSM_UPLINK_DOWNLINK_SPLITTER_H
25#define INCLUDED_GRGSM_UPLINK_DOWNLINK_SPLITTER_H
Piotr Krysik2bb54c82016-08-16 16:05:23 +020026
27#include <grgsm/api.h>
28#include <gnuradio/block.h>
29
30namespace gr {
Piotr Krysik264fbf62017-11-05 12:25:51 +010031 namespace gsm {
Piotr Krysik2bb54c82016-08-16 16:05:23 +020032
33 /*!
34 * \brief <+description of block+>
35 * \ingroup grgsm
36 *
37 */
Piotr Krysika3405b22016-08-30 21:31:24 +020038 class GRGSM_API uplink_downlink_splitter : virtual public gr::block
Piotr Krysik2bb54c82016-08-16 16:05:23 +020039 {
40 public:
Piotr Krysika3405b22016-08-30 21:31:24 +020041 typedef boost::shared_ptr<uplink_downlink_splitter> sptr;
Piotr Krysik2bb54c82016-08-16 16:05:23 +020042
43 /*!
Piotr Krysika3405b22016-08-30 21:31:24 +020044 * \brief Return a shared_ptr to a new instance of grgsm::uplink_downlink_splitter.
Piotr Krysik2bb54c82016-08-16 16:05:23 +020045 *
Piotr Krysika3405b22016-08-30 21:31:24 +020046 * To avoid accidental use of raw pointers, grgsm::uplink_downlink_splitter's
Piotr Krysik2bb54c82016-08-16 16:05:23 +020047 * constructor is in a private implementation
Piotr Krysika3405b22016-08-30 21:31:24 +020048 * class. grgsm::uplink_downlink_splitter::make is the public interface for
Piotr Krysik2bb54c82016-08-16 16:05:23 +020049 * creating new instances.
50 */
51 static sptr make();
52 };
53
Piotr Krysik264fbf62017-11-05 12:25:51 +010054 } // namespace gsm
Piotr Krysik2bb54c82016-08-16 16:05:23 +020055} // namespace gr
56
Piotr Krysika3405b22016-08-30 21:31:24 +020057#endif /* INCLUDED_GRGSM_UPLINK_DOWNLINK_SPLITTER_H */
Piotr Krysik2bb54c82016-08-16 16:05:23 +020058