uhd/host/lib/include/uhdlib/usrp/common/validate_subdev_spec.hpp
Lane Kolbly 5802a362f8 uhd: Replace include guards with pragma once
Pragma once is the more modern version of include guards, eliminating
any potential problems with mistyping include guards. Let's use those.
2020-04-08 15:16:06 -05:00

23 lines
555 B
C++

//
// Copyright 2011 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#pragma once
#include <uhd/config.hpp>
#include <uhd/property_tree.hpp>
#include <uhd/usrp/subdev_spec.hpp>
#include <string>
namespace uhd { namespace usrp {
//! Validate a subdev spec against a property tree
void validate_subdev_spec(property_tree::sptr tree,
const subdev_spec_t& spec,
const std::string& type, // rx or tx
const std::string& mb = "0");
}} // namespace uhd::usrp