GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
transfer_type.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2021 BlackLynx, 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 INCLUDED_GR_RUNTIME_TRANSFER_TYPE_H
12#define INCLUDED_GR_RUNTIME_TRANSFER_TYPE_H
13
14#include <gnuradio/api.h>
15#include <ostream>
16
17namespace gr {
18
19enum class transfer_type {
25};
26
27GR_RUNTIME_API std::ostream& operator<<(std::ostream& os, const transfer_type& type);
28} // namespace gr
29
30#endif
#define GR_RUNTIME_API
Definition: gnuradio-runtime/include/gnuradio/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29
std::ostream & operator<<(std::ostream &os, basic_block_sptr basic_block)
Definition: basic_block.h:436
transfer_type
Definition: transfer_type.h:19