diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2014-05-05 23:16:55 -0400 |
---|---|---|
committer | Tim O'Shea <tim.oshea753@gmail.com> | 2014-05-05 23:17:35 -0400 |
commit | 8c97b7c379952c010c84cf8ae8a97fbfaac83bfd (patch) | |
tree | 0b3e4abe3249b337d0b65be996577f47ce5bc86b /gr-blocks/lib/pdu_remove_impl.h | |
parent | 58d003bcdd0a4982941ccc700a6158aaa25a02d2 (diff) |
blocks: adding pdu_remove block
Diffstat (limited to 'gr-blocks/lib/pdu_remove_impl.h')
-rw-r--r-- | gr-blocks/lib/pdu_remove_impl.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gr-blocks/lib/pdu_remove_impl.h b/gr-blocks/lib/pdu_remove_impl.h new file mode 100644 index 0000000000..4492e4b6d9 --- /dev/null +++ b/gr-blocks/lib/pdu_remove_impl.h @@ -0,0 +1,44 @@ +/* -*- c++ -*- */ +/* + * Copyright 2013 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * GNU Radio is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * GNU Radio is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Radio; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + */ + +#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); + }; + + } /* namespace blocks */ +} /* namespace gr */ + +#endif /* INCLUDED_BLOCKS_PDU_REMOVE_IMPL_H */ |