mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
19 lines
229 B
C++
19 lines
229 B
C++
//
|
|
// Copyright 2013 Ettus Research LLC
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0
|
|
//
|
|
|
|
#include <uhd/stream.hpp>
|
|
|
|
using namespace uhd;
|
|
|
|
rx_streamer::~rx_streamer(void)
|
|
{
|
|
//empty
|
|
}
|
|
|
|
tx_streamer::~tx_streamer(void)
|
|
{
|
|
//empty
|
|
}
|