diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-01-12 14:24:48 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-01-12 14:24:48 -0800 |
commit | 3a443cfe307c4f2c5f03806146d4ad1664faa288 (patch) | |
tree | 294dd854a825dbed9e209720d1bbfa01ed41381a /gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h | |
parent | 7b77431d3a4971ac62c6e71a813151404c1ae5e3 (diff) |
zeromq: cleanup and made pull_msg_source derive from gr::block
Diffstat (limited to 'gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h')
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h b/gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h index 7d87ba1574..17495152b8 100644 --- a/gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h +++ b/gr-zeromq/include/gnuradio/zeromq/pull_msg_source.h @@ -24,20 +24,20 @@ #define INCLUDED_ZEROMQ_PULL_MSG_SOURCE_H #include <gnuradio/zeromq/api.h> -#include <gnuradio/sync_block.h> +#include <gnuradio/block.h> namespace gr { namespace zeromq { /*! - * \brief Receive messages on ZMQ PULL socket and source stream + * \brief Receive messages on ZMQ PULL socket and output async messages * \ingroup zeromq * * \details - * This block will connect to a ZMQ PUSH socket, then produce all - * incoming messages as streaming output. + * This block will connect to a ZMQ PUSH socket, then convert + * received messages to outgoing async messages. */ - class ZEROMQ_API pull_msg_source : virtual public gr::sync_block + class ZEROMQ_API pull_msg_source : virtual public gr::block { public: typedef boost::shared_ptr<pull_msg_source> sptr; |