aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/block_ctrl_impl.cpp
blob: fe2e4347fe3bd73c404ecf639c67c14e5216b458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright 2014 Ettus Research LLC
//
// SPDX-License-Identifier: GPL-3.0
//

#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);