GNU Radio's GSM Package
collect_system_info_impl.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * @file
4  * @author (C) 2017 by Roman Khassraf <rkhassraf@gmail.com>
5  * @section LICENSE
6  *
7  * Gr-gsm is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * Gr-gsm is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with gr-gsm; see the file COPYING. If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef INCLUDED_GSM_COLLECT_SYSTEM_INFO_IMPL_H
24 #define INCLUDED_GSM_COLLECT_SYSTEM_INFO_IMPL_H
25 
27 #include <vector>
28 
29 namespace gr {
30  namespace gsm {
32  {
33  private:
34  void process_messages(pmt::pmt_t msg);
35  std::vector<int> d_framenumbers;
36  std::vector<std::string> d_sit_types;
37  std::vector<std::string> d_sit_data;
38  std::string get_hex_string(uint8_t * msg_elements);
39  public:
40  virtual std::vector<int> get_framenumbers();
41  virtual std::vector<std::string> get_system_information_type();
42  virtual std::vector<std::string> get_data();
45  };
46  } // namespace gsm
47 } // namespace gr
48 
49 #endif /* INCLUDED_GSM_COLLECT_SYSTEM_INFO_IMPL_H */
gr::gsm::collect_system_info_impl::~collect_system_info_impl
~collect_system_info_impl()
gr::gsm::collect_system_info_impl::get_data
virtual std::vector< std::string > get_data()
collect_system_info.h
gr::gsm::collect_system_info_impl
Definition: collect_system_info_impl.h:32
gr::gsm::collect_system_info_impl::collect_system_info_impl
collect_system_info_impl()
gr::gsm::collect_system_info_impl::get_system_information_type
virtual std::vector< std::string > get_system_information_type()
gr::gsm::collect_system_info_impl::get_framenumbers
virtual std::vector< int > get_framenumbers()
gr
Definition: constants.h:29
gr::gsm::collect_system_info
<+description of block+>
Definition: collect_system_info.h:40