How do I use a API that takes a list of boost::optional parameters? I have not found any documentation that talks about input parameters,
This and this does not talk about how to handle input parameters. Please let me know what I am missing.
here it is
void myMethod(const boost::optional< std::string >& name,
const boost::optional< std::string >& address,
const boost::optional< boost::string >& description,
const boost::optional< bool >& isCurrent,
const boost::optional< std::string >& ProductName,
const boost::optional< std::string >& Vendor)
Given that, how should I call it? myMethod(,,,,x,y)
did not work