summaryrefslogtreecommitdiff
path: root/gr-zeromq/lib/req_msg_source_impl.h
diff options
context:
space:
mode:
authorTim O'Shea <tim.oshea753@gmail.com>2014-12-30 17:48:09 +0100
committerTim O'Shea <tim.oshea753@gmail.com>2014-12-30 17:48:09 +0100
commit1ee94434c6d81d04cc1d5435cd5bd8c2a5875f89 (patch)
tree0a6349a845ebe7e50c680afee0037dae42971e00 /gr-zeromq/lib/req_msg_source_impl.h
parentcd7e604d527f6324138f778dd15253d78df49350 (diff)
zmq: building working versions of additional zmq message blocks in place (push/pull + rep/req)
Diffstat (limited to 'gr-zeromq/lib/req_msg_source_impl.h')
-rw-r--r--gr-zeromq/lib/req_msg_source_impl.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/gr-zeromq/lib/req_msg_source_impl.h b/gr-zeromq/lib/req_msg_source_impl.h
new file mode 100644
index 0000000000..635fa45b62
--- /dev/null
+++ b/gr-zeromq/lib/req_msg_source_impl.h
@@ -0,0 +1,51 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2013,2014 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio.
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef INCLUDED_ZEROMQ_REQ_MSG_SOURCE_IMPL_H
+#define INCLUDED_ZEROMQ_REQ_MSG_SOURCE_IMPL_H
+
+#include <gnuradio/zeromq/req_msg_source.h>
+#include <zmq.hpp>
+
+namespace gr {
+ namespace zeromq {
+
+ class req_msg_source_impl : public req_msg_source
+ {
+ private:
+ int d_timeout;
+ zmq::context_t *d_context;
+ zmq::socket_t *d_socket;
+
+ public:
+ req_msg_source_impl(char *address, int timeout);
+ ~req_msg_source_impl();
+
+ int work(int noutput_items,
+ gr_vector_const_void_star &input_items,
+ gr_vector_void_star &output_items);
+ };
+
+ } // namespace zeromq
+} // namespace gr
+
+#endif /* INCLUDED_ZEROMQ_REQ_MSG_SOURCE_IMPL_H */