blob: aa090f9288777ab2b301a4c614f3f9e0776e9b77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* -*- 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) { d_k = key; };
};
} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_BLOCKS_PDU_REMOVE_IMPL_H */
|