diff options
author | Jacob Gilbert <jacob.gilbert@protonmail.com> | 2021-03-14 10:29:08 -0700 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-03-18 16:35:41 -0400 |
commit | 4a3fe8539ce0f0830db150d7c8b920d9c0828c0c (patch) | |
tree | e41709e4e7a4ac1a843895c55cf81490929418fc /gr-blocks/lib/pdu_remove_impl.h | |
parent | a8a9913136a64da903f190493bdc117b5349625e (diff) |
gr-blocks: remove pdu blocks
The following have been moved to the new gr::pdu module or to
gr::network and are no longer needed in gr::blocks:
- pdu (noblock)
- pdu_filter block
- pdu_remove block
- pdu_set block
- pdu_to_tagged_stream block
- random_pdu block
- socket_pdu block
- stream_pdu_base (noblock)
- tagged_stream_to_pdu block
- tcp_connection (noblock)
- tuntap_pdu block
The digital and FEC modules had a large number of references to the PDU
blocks that were moved from gr-blocks to gr-pdu, this updates these
changes in example flowgraphs and a few python files. The usage-manual
update will be propagated to the wiki so that future exports will remain
up to date.
Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
Diffstat (limited to 'gr-blocks/lib/pdu_remove_impl.h')
-rw-r--r-- | gr-blocks/lib/pdu_remove_impl.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/gr-blocks/lib/pdu_remove_impl.h b/gr-blocks/lib/pdu_remove_impl.h deleted file mode 100644 index 74c77d6e45..0000000000 --- a/gr-blocks/lib/pdu_remove_impl.h +++ /dev/null @@ -1,33 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2013 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * SPDX-License-Identifier: GPL-3.0-or-later - * - */ - -#ifndef INCLUDED_BLOCKS_PDU_REMOVE_IMPL_H -#define INCLUDED_BLOCKS_PDU_REMOVE_IMPL_H - -#include <gnuradio/blocks/pdu_remove.h> - -namespace gr { -namespace blocks { - -class pdu_remove_impl : public pdu_remove -{ -private: - pmt::pmt_t d_k; - -public: - pdu_remove_impl(pmt::pmt_t k); - void handle_msg(pmt::pmt_t msg); - void set_key(pmt::pmt_t key) override { d_k = key; }; -}; - -} /* namespace blocks */ -} /* namespace gr */ - -#endif /* INCLUDED_BLOCKS_PDU_REMOVE_IMPL_H */ |