USRP Hardware Driver and USRP Manual  Version: 4.6.0.0-7-gece7c4811
UHD and USRP Manual
string_vector.h
Go to the documentation of this file.
1 /*
2  * Copyright 2015 Ettus Research
3  * Copyright 2018 Ettus Research, a National Instruments Company
4  *
5  * SPDX-License-Identifier: GPL-3.0-or-later
6  */
7 
8 #pragma once
9 
10 #include <uhd/config.h>
11 #include <uhd/error.h>
12 
13 #include <stdlib.h>
14 
15 #ifdef __cplusplus
16 # include <string>
17 # include <vector>
18 
20 {
21  std::vector<std::string> string_vector_cpp;
22  std::string last_error;
23 };
24 
25 extern "C" {
26 #else
27 struct uhd_string_vector_t;
29 #endif
30 
32 
34 
36 UHD_API uhd_error uhd_string_vector_make(uhd_string_vector_handle* h);
37 
39 UHD_API uhd_error uhd_string_vector_free(uhd_string_vector_handle* h);
40 
43  uhd_string_vector_handle* h, const char* value);
44 
47  uhd_string_vector_handle h, size_t index, char* value_out, size_t strbuffer_len);
48 
50 UHD_API uhd_error uhd_string_vector_size(uhd_string_vector_handle h, size_t* size_out);
51 
54  uhd_string_vector_handle h, char* error_out, size_t strbuffer_len);
55 
56 #ifdef __cplusplus
57 }
58 #endif
UHD_API uhd_error uhd_string_vector_push_back(uhd_string_vector_handle *h, const char *value)
Add a string to the list.
struct uhd_string_vector_t uhd_string_vector_t
Definition: string_vector.h:31
UHD_API uhd_error uhd_string_vector_size(uhd_string_vector_handle h, size_t *size_out)
Get the number of strings in this list.
uhd_error
UHD error codes.
Definition: error.h:20
UHD_API uhd_error uhd_string_vector_at(uhd_string_vector_handle h, size_t index, char *value_out, size_t strbuffer_len)
Get the string at the given index.
UHD_API uhd_error uhd_string_vector_last_error(uhd_string_vector_handle h, char *error_out, size_t strbuffer_len)
Get the last error reported by the underlying object.
UHD_API uhd_error uhd_string_vector_make(uhd_string_vector_handle *h)
Instantiate a string_vector handle.
uhd_string_vector_t * uhd_string_vector_handle
Definition: string_vector.h:33
#define UHD_API
Definition: config.h:87
UHD_API uhd_error uhd_string_vector_free(uhd_string_vector_handle *h)
Safely destroy a string_vector handle.