Holds values to load into Options.
More...
#include <CLI11.hpp>
|
std::string | fullname () const |
| The list of parents and name joined by ".".
|
|
|
std::vector< std::string > | parents {} |
| This is the list of parents.
|
|
std::string | name {} |
| This is the name.
|
|
std::vector< std::string > | inputs {} |
| Listing of inputs.
|
|
Definition at line 1963 of file CLI11.hpp.
◆ fullname()
std::string CLI::ConfigItem::fullname |
( |
| ) |
const |
|
inline |
Definition at line 1974 of file CLI11.hpp.
1974 {
1975 std::vector<std::string> tmp =
parents;
1976 tmp.emplace_back(
name);
1978 }
std::string join(const T &v, std::string delim=",")
Simple function to join a string.
std::string name
This is the name.
std::vector< std::string > parents
This is the list of parents.
◆ inputs
std::vector<std::string> CLI::ConfigItem::inputs {} |
◆ name
std::string CLI::ConfigItem::name {} |
◆ parents
std::vector<std::string> CLI::ConfigItem::parents {} |
The documentation for this struct was generated from the following file: