GNU Radio Manual and C++ API Reference
3.9.1.0
The Free & Open Software Radio Ecosystem
xor_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 XOR_BLK_H
13
#define XOR_BLK_H
14
15
#include <
gnuradio/blocks/api.h
>
16
#include <
gnuradio/sync_block.h
>
17
#include <cstdint>
18
19
namespace
gr
{
20
namespace
blocks {
21
22
/*!
23
* \brief output = input_0 ^ input_1 ^ , ... ^ input_N)
24
* \ingroup boolean_operators_blk
25
*
26
* Bitwise boolean xor across all input streams.
27
*/
28
template
<
class
T>
29
class
BLOCKS_API
xor_blk
:
virtual
public
sync_block
30
{
31
public
:
32
// gr::blocks::xor::sptr
33
typedef
std::shared_ptr<xor_blk<T>>
sptr
;
34
35
static
sptr
make(
size_t
vlen = 1);
36
};
37
38
typedef
xor_blk<std::uint8_t>
xor_bb
;
39
typedef
xor_blk<std::int16_t>
xor_ss
;
40
typedef
xor_blk<std::int32_t>
xor_ii
;
41
}
/* namespace blocks */
42
}
/* namespace gr */
43
44
#endif
/* XOR_BLK_H */
api.h
gr::blocks::xor_ss
xor_blk< std::int16_t > xor_ss
Definition:
xor_blk.h:39
gr::blocks::xor_ii
xor_blk< std::int32_t > xor_ii
Definition:
xor_blk.h:40
BLOCKS_API
#define BLOCKS_API
Definition:
gr-blocks/include/gnuradio/blocks/api.h:18
gr::blocks::xor_bb
xor_blk< std::uint8_t > xor_bb
Definition:
xor_blk.h:38
gr::sync_block
synchronous 1:1 input to output with history
Definition:
sync_block.h:25
gr::blocks::xor_blk::sptr
std::shared_ptr< xor_blk< T > > sptr
Definition:
xor_blk.h:33
gr::blocks::xor_blk
output = input_0 ^ input_1 ^ , ... ^ input_N)
Definition:
xor_blk.h:29
sync_block.h
gr
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition:
basic_block.h:29
gr-blocks
include
gnuradio
blocks
xor_blk.h
Generated by
1.8.17