aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/experts/expert_factory.cpp
blob: 2d86f90a1b6fe03af7667f47c0c51ef44064ef1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Copyright 2016 Ettus Research
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//

#include <uhdlib/experts/expert_factory.hpp>

namespace uhd { namespace experts {

expert_container::sptr expert_factory::create_container(const std::string& name)
{
    return expert_container::make(name);
}

}} // namespace uhd::experts