uhd/host/lib/experts/expert_factory.cpp
Martin Braun ae5211d71d uhd: Update license headers
All copyright is now attributed to "Ettus Research, a National
Instruments company".

SPDX headers were also updated to latest version 3.0.
2018-02-19 16:54:52 -08:00

17 lines
351 B
C++

//
// Copyright 2016 Ettus Research
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include "expert_factory.hpp"
namespace uhd { namespace experts {
expert_container::sptr expert_factory::create_container(const std::string& name)
{
return expert_container::make(name);
}
}}