 |
GNU Radio Manual and C++ API Reference
3.10.5.1
The Free & Open Software Radio Ecosystem
|
|
Go to the documentation of this file.
11 #ifndef INCLUDED_GR_SELECTOR_H
12 #define INCLUDED_GR_SELECTOR_H
33 typedef std::shared_ptr<selector>
sptr;
36 make(
size_t itemsize,
unsigned int input_index,
unsigned int output_index);
40 virtual void set_enabled(
bool enable) = 0;
41 virtual bool enabled()
const = 0;
43 virtual void set_input_index(
unsigned int input_index) = 0;
44 virtual int input_index()
const = 0;
46 virtual void set_output_index(
unsigned int output_index) = 0;
47 virtual int output_index()
const = 0;
output[output_index][i] = input[input_index][i]
Definition: selector.h:30
#define BLOCKS_API
Definition: gr-blocks/include/gnuradio/blocks/api.h:18
GR_RUNTIME_API size_t itemsize(types::vector_type type)
The abstract base class for all 'terminal' processing blocks.
Definition: gnuradio-runtime/include/gnuradio/block.h:62
GNU Radio logging wrapper.
Definition: basic_block.h:29
std::shared_ptr< selector > sptr
Definition: selector.h:33