-
Hello,
Error:
|
Beta Was this translation helpful? Give feedback.
Answered by
daniele77
Jul 21, 2021
Replies: 1 comment
-
@yahya010 currently
However, soon cli will be able to manage user defined types. See this issue #69 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
daniele77
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@yahya010 currently
cli
only supports basic types and a vector of strings.So, you can't use
std::vector<uint32_t>
.You have two alternatives:
uint32_t
parameters, you can explicit each argumentuint32_t
, you can use astd::vector<std::string>
and in your handle, you must convert each string into a uint32_t using e.g.,stoul
However, soon cli will be able to manage user defined types. See this issue #69