uhd/host/lib/rfnoc/block_ctrl_impl.cpp

24 lines
443 B
C++
Raw Normal View History

2016-08-02 01:17:41 +00:00
//
// Copyright 2014 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
2016-08-02 01:17:41 +00:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2016-08-02 01:17:41 +00:00
//
#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);