/* -*- c++ -*- */ /* * Copyright 2013,2014,2019 Free Software Foundation, Inc. * * This file is part of GNU Radio. * * SPDX-License-Identifier: GPL-3.0-or-later * */ #ifndef INCLUDED_ZEROMQ_REP_SINK_IMPL_H #define INCLUDED_ZEROMQ_REP_SINK_IMPL_H #include "base_impl.h" #include <gnuradio/zeromq/rep_sink.h> namespace gr { namespace zeromq { class rep_sink_impl : public rep_sink, public base_sink_impl { public: rep_sink_impl(size_t itemsize, size_t vlen, char* address, int timeout, bool pass_tags, int hwm); int work(int noutput_items, gr_vector_const_void_star& input_items, gr_vector_void_star& output_items) override; std::string last_endpoint() override { return base_sink_impl::last_endpoint(); } }; } // namespace zeromq } // namespace gr #endif /* INCLUDED_ZEROMQ_REP_SINK_IMPL_H */