GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
and_blk.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2012,2018 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11
12#ifndef AND_BLK_H
13#define AND_BLK_H
14
15#include <gnuradio/blocks/api.h>
16#include <gnuradio/sync_block.h>
17#include <cstdint>
18
19namespace gr {
20namespace blocks {
21
22/*!
23 * \brief output = input[0] & input[1] & ... & input[M-1]
24 * \ingroup boolean_operators_blk
25 *
26 * \details
27 * bitwise boolean AND across all input streams.
28 */
29template <class T>
30class BLOCKS_API and_blk : virtual public sync_block
31{
32public:
33 // gr::blocks::and_blk::sptr
34 typedef std::shared_ptr<and_blk<T>> sptr;
35
36 static sptr make(size_t vlen = 1);
37};
38
42} /* namespace blocks */
43} /* namespace gr */
44
45#endif /* AND_BLK_H */
output = input[0] & input[1] & ... & input[M-1]
Definition: and_blk.h:31
static sptr make(size_t vlen=1)
std::shared_ptr< and_blk< T > > sptr
Definition: and_blk.h:34
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define BLOCKS_API
Definition: gr-blocks/include/gnuradio/blocks/api.h:18
and_blk< std::int16_t > and_ss
Definition: and_blk.h:40
and_blk< std::uint8_t > and_bb
Definition: and_blk.h:39
and_blk< std::int32_t > and_ii
Definition: and_blk.h:41
GNU Radio logging wrapper.
Definition: basic_block.h:29