USRP Hardware Driver and USRP Manual  Version: 3.11.0.HEAD-0-gdca39145
UHD and USRP Manual
csv.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2011 Ettus Research LLC
3 //
4 // SPDX-License-Identifier: GPL-3.0
5 //
6 
7 #ifndef INCLUDED_UHD_UTILS_CSV_HPP
8 #define INCLUDED_UHD_UTILS_CSV_HPP
9 
10 #include <uhd/config.hpp>
11 #include <vector>
12 #include <string>
13 #include <istream>
14 
15 namespace uhd{ namespace csv{
16  typedef std::vector<std::string> row_type;
17  typedef std::vector<row_type> rows_type;
18 
20  UHD_API rows_type to_rows(std::istream &input);
21 
22 }} //namespace uhd::csv
23 
24 #endif /* INCLUDED_UHD_UTILS_CSV_HPP */
std::vector< row_type > rows_type
Definition: csv.hpp:17
std::vector< std::string > row_type
Definition: csv.hpp:16
Definition: build_info.hpp:14
UHD_API rows_type to_rows(std::istream &input)
Convert an input stream to csv rows.
#define UHD_API
Definition: config.h:62