summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/pdu_remove_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/pdu_remove_impl.h')
-rw-r--r--gr-blocks/lib/pdu_remove_impl.h33
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 */