aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/block_ctrl_impl.cpp
blob: 030cd77dea6db1b55bf7f2958d425b7ca411c5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// 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);