blob: 759ccacd0696577c43e7efe45e8c0a3e5aa00353 [file] [log] [blame]
ptrkrysik82bd1172015-01-15 09:35:03 +01001/* -*- c++ -*- */
2/* @file
3 * @author Piotr Krysik <ptrkrysik@gmail.com>
4 * @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#ifndef INCLUDED_GSM_TMSI_DUMPER_IMPL_H
24#define INCLUDED_GSM_TMSI_DUMPER_IMPL_H
25
ptrkrysik258bbb82015-01-15 11:31:47 +010026#include <grgsm/misc_utils/tmsi_dumper.h>
ptrkrysik82bd1172015-01-15 09:35:03 +010027
28namespace gr {
29 namespace gsm {
30
31 class tmsi_dumper_impl : public tmsi_dumper
32 {
33 private:
ptrkrysik258bbb82015-01-15 11:31:47 +010034 void dump_tmsi(pmt::pmt_t msg);
ptrkrysik82bd1172015-01-15 09:35:03 +010035
36 public:
37 tmsi_dumper_impl();
38 ~tmsi_dumper_impl();
ptrkrysik258bbb82015-01-15 11:31:47 +010039 };
ptrkrysik82bd1172015-01-15 09:35:03 +010040 } // namespace gsm
41} // namespace gr
42
43#endif /* INCLUDED_GSM_TMSI_DUMPER_IMPL_H */
44