mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of
files that clang-format gets applied against.
17 lines
392 B
C++
17 lines
392 B
C++
//
|
|
// 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
|