uhd/host/lib/experts/expert_factory.cpp
Martin Anderseck 78be317599 experts: Move expert framework into public API
To enable third party components (e.g. frontend modules) to use the
experts framework the headers need to be placed in the public API.
This change does this and fixes all dependencies. The experts
framework has been kept as internal API to enable changes more
easily, however it has been there without major changes for quite
a while already and therefore it should be safe to publish it.
2022-07-20 15:56:32 -05:00

17 lines
389 B
C++

//
// Copyright 2016 Ettus Research
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhd/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