gr-baz Package
baz_burst_tagger.h
Go to the documentation of this file.
1/*
2 * Copyright 2014 Balint Seeber <balint256@gmail.com>
3 * Copyright 2013 Bastian Bloessl <bloessl@ccs-labs.org>.
4 *
5 * This is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3, or (at your option)
8 * any later version.
9 *
10 * This software is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this software; see the file COPYING. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street,
18 * Boston, MA 02110-1301, USA.
19 */
20
21
22#ifndef INCLUDED_BAZ_BURST_TAGGER_H
23#define INCLUDED_BAZ_BURST_TAGGER_H
24
25#include <gnuradio/sync_block.h>
26
27namespace gr {
28namespace baz {
29
30class BAZ_API burst_tagger : virtual public gr::block {
31public:
32 typedef boost::shared_ptr<burst_tagger> sptr;
33
34 static sptr make(const std::string& tag_name = "length", float mult = 1.0f, unsigned int pad_front = 0, unsigned int pad_rear = 0, bool drop_residue = true, bool verbose = true);
35};
36
37} // namespace baz
38} // namespace gr
39
40#endif /* INCLUDED_BAZ_BURST_TAGGER_H */
#define BAZ_API
Definition api.h:19
Definition baz_burst_tagger.h:30
boost::shared_ptr< burst_tagger > sptr
Definition baz_burst_tagger.h:32
static sptr make(const std::string &tag_name="length", float mult=1.0f, unsigned int pad_front=0, unsigned int pad_rear=0, bool drop_residue=true, bool verbose=true)
Definition baz_additive_scrambler_bb.h:28