aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/experts/expert_factory.cpp
blob: 2999ce97bf90958a74c371c50f9f6820b720e1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright 2016 Ettus Research
//
// SPDX-License-Identifier: GPL-3.0
//

#include "expert_factory.hpp"

namespace uhd { namespace experts {

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

}}