Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/CommandLineUI/CommandLineParser.cpp

    r7d9416 ra88452  
    193193        ;
    194194      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;
    195204    case TypeEnumContainer::FileType:
    196205      OptionList->add_options()
     
    361370                  po::value < std::string >()->default_value(boost::lexical_cast< std::string >(currentOption->getDefaultValue().c_str())) :
    362371                  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 >(),
    372372                  currentOption->getDescription().c_str())
    373373        ;
Note: See TracChangeset for help on using the changeset viewer.