blob: b5ffdcbbdf6e1409a054533109e7ec17dcc495aa [file] [log] [blame]
Roman Khassrafadea86f2015-07-27 15:52:02 +02001/* -*- c++ -*- */
2/* @file
Piotr Krysika6268a52017-08-23 16:02:19 +02003 * @author (C) 2015 by Roman Khassraf <rkhassraf@gmail.com>
Roman Khassrafadea86f2015-07-27 15:52:02 +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#ifndef INCLUDED_GSM_MESSAGE_SOURCE_IMPL_H
24#define INCLUDED_GSM_MESSAGE_SOURCE_IMPL_H
25
Roman Khassrafb8f49092015-08-03 10:08:18 +020026#include <grgsm/qa_utils/message_source.h>
Roman Khassrafadea86f2015-07-27 15:52:02 +020027
28namespace gr {
29 namespace gsm {
30
31 class message_source_impl : public message_source
32 {
33 private:
34 boost::shared_ptr<gr::thread::thread> d_thread;
35 std::vector<std::vector<uint8_t> > d_msgs;
36 bool d_finished;
37 void run();
38 public:
39 message_source_impl(const std::vector<std::string> &msg_data);
40 ~message_source_impl();
41 virtual void set_msg_data(const std::vector<std::string> &msg_data);
42 bool start();
43 bool stop();
44 bool finished();
45 };
46
47 } // namespace grgsm
48} // namespace gr
49
50#endif /* INCLUDED_GSM_MESSAGE_SOURCE_IMPL_H */
51