- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineParser.cpp
ra88452 r7d9416 193 193 ; 194 194 break; 195 case TypeEnumContainer::BoxType:196 OptionList->add_options()197 (currentOption->getKeyAndShortForm().c_str(),198 // currentOption->hasDefaultValue() ?199 // po::value < BoxValue >()->default_value(boost::lexical_cast<BoxValue>(currentOption->getDefaultValue().c_str())) :200 po::value < BoxValue >(),201 currentOption->getDescription().c_str())202 ;203 break;204 195 case TypeEnumContainer::FileType: 205 196 OptionList->add_options() … … 370 361 po::value < std::string >()->default_value(boost::lexical_cast< std::string >(currentOption->getDefaultValue().c_str())) : 371 362 po::value < std::string >(), 363 currentOption->getDescription().c_str()) 364 ; 365 break; 366 case TypeEnumContainer::RealSpaceMatrixType: 367 OptionList->add_options() 368 (currentOption->getKeyAndShortForm().c_str(), 369 // currentOption->hasDefaultValue() ? 370 // po::value < RealSpaceMatrixValue >()->default_value(boost::lexical_cast<BoxValue>(currentOption->getDefaultValue().c_str())) : 371 po::value < RealSpaceMatrixValue >(), 372 372 currentOption->getDescription().c_str()) 373 373 ;
Note:
See TracChangeset
for help on using the changeset viewer.