我的xml文件中有元素dateselection,blackscholes和volatility,我想检查这些值,尝试使用std :: cout打印出内容给我构建错误,我也想检查元素是否存在xml 文件,例如 if(blackscholes.exists())。代码合成中是否存在此类功能?
dateselection& date = i->dateselection();
const xsd::cxx::tree::date<char,simple_type>& end = date.enddate();
const xsd::cxx::tree::sequence<bool, true>& black = i->blackscholes();
const xsd::cxx::tree::sequence<bool, true>& volatility = i->volatility();
我也可以将结束日期转换为 boost/date_time/gregorian/gregorian 类型吗?
提前致谢