GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
add_const_ff.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2004,2012,2015 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#ifndef ADD_CONST_FF
12#define ADD_CONST_FF
13
14#include <gnuradio/blocks/api.h>
15#include <gnuradio/sync_block.h>
16#include <volk/volk_alloc.hh>
17
18namespace gr {
19namespace blocks {
20
21/*!
22 * \brief output = input + constant
23 * \ingroup math_operators_blk
24 */
25class BLOCKS_API add_const_ff : virtual public sync_block
26{
27public:
28 // gr::blocks::add_const_ff::sptr
29 typedef std::shared_ptr<add_const_ff> sptr;
30
31 /*!
32 * \brief Create an instance of add_const_ff
33 * \param k additive constant
34 */
35 static sptr make(float k);
36
37 /*!
38 * \brief Return additive constant
39 */
40 virtual float k() const = 0;
41
42 /*!
43 * \brief Set additive constant
44 */
45 virtual void set_k(float k) = 0;
46};
47
48} // namespace blocks
49} // namespace gr
50
51#endif /* ADD_CONST_FF */
output = input + constant
Definition: add_const_ff.h:26
std::shared_ptr< add_const_ff > sptr
Definition: add_const_ff.h:29
static sptr make(float k)
Create an instance of add_const_ff.
virtual void set_k(float k)=0
Set additive constant.
virtual float k() const =0
Return additive constant.
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
GNU Radio logging wrapper.
Definition: basic_block.h:29