Ignore:
File:
1 edited

Legend:

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

    ra88452 r7d9416  
    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;
    204195    case TypeEnumContainer::FileType:
    205196      OptionList->add_options()
     
    370361                  po::value < std::string >()->default_value(boost::lexical_cast< std::string >(currentOption->getDefaultValue().c_str())) :
    371362                  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.