blob: 1aabd0747c00d0cd7baa787303290274437597e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* -*- c++ -*- */
/*
* Copyright 2004,2010,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_GR_NOP_H
#define INCLUDED_GR_NOP_H
#include <gnuradio/block.h>
#include <gnuradio/blocks/api.h>
#include <stddef.h> // size_t
namespace gr {
namespace blocks {
/*!
* \brief Does nothing. Used for testing only.
* \ingroup misc_blk
*/
class BLOCKS_API nop : virtual public block
{
public:
// gr::blocks::nop::sptr
typedef boost::shared_ptr<nop> sptr;
/*!
* Build a nop block.
*
* \param sizeof_stream_item size of the stream items in bytes.
*/
static sptr make(size_t sizeof_stream_item);
virtual int nmsgs_received() const = 0;
virtual int ctrlport_test() const = 0;
virtual void set_ctrlport_test(int x) = 0;
};
} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_GR_NOP_H */
|