mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-14 20:58:09 +00:00
All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0.
23 lines
443 B
C++
23 lines
443 B
C++
//
|
|
// Copyright 2014 Ettus Research LLC
|
|
// Copyright 2018 Ettus Research, a National Instruments Company
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
//
|
|
|
|
#include <uhd/rfnoc/block_ctrl.hpp>
|
|
|
|
using namespace uhd::rfnoc;
|
|
|
|
class block_ctrl_impl : public block_ctrl
|
|
{
|
|
public:
|
|
UHD_RFNOC_BLOCK_CONSTRUCTOR(block_ctrl)
|
|
{
|
|
// nop
|
|
}
|
|
|
|
// Very empty class, this one
|
|
};
|
|
|
|
UHD_RFNOC_BLOCK_REGISTER(block_ctrl, DEFAULT_BLOCK_NAME);
|