USRP Hardware Driver and USRP Manual  Version: 3.15.0.HEAD-0-g6563c537
UHD and USRP Manual
component_file.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2017 Ettus Research, a National Instruments Company
3 //
4 // SPDX-License-Identifier: GPL-3.0-or-later
5 //
6 
7 #ifndef INCLUDED_UHD_USRP_COMPONENT_FILE_HPP
8 #define INCLUDED_UHD_USRP_COMPONENT_FILE_HPP
9 
10 #include <uhd/types/dict.hpp>
11 #include <string>
12 #include <vector>
13 
14 namespace uhd { namespace usrp {
15 
29 {
31  std::vector<uint8_t> data;
32 };
33 
34 typedef std::vector<component_file_t> component_files_t;
35 
36 }} // namespace uhd::usrp
37 
38 #endif /* INCLUDED_UHD_USRP_COMPONENT_FILE_HPP */
Definition: build_info.hpp:13
std::vector< component_file_t > component_files_t
Definition: component_file.hpp:34
Definition: component_file.hpp:28
uhd::dict< std::string, std::string > metadata
Definition: component_file.hpp:30
std::vector< uint8_t > data
Definition: component_file.hpp:31