mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
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.
17 lines
389 B
C++
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
|