Ignore:
File:
1 edited

Legend:

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

    r163110 r33e801  
    136136}
    137137
    138 void CommandLineDialog::queryRandomNumberDistribution_Parameters(Parameter<RandomNumberDistribution_Parameters> &param, const std::string title, const std::string description){
    139   registerQuery(new RandomNumberDistribution_ParametersCommandLineQuery(param, title, description));
     138void CommandLineDialog::queryKeyValuePair(Parameter<KeyValuePair> &param, const std::string title, const std::string description)
     139{
     140  registerQuery(new KeyValuePairCommandLineQuery(param, title,description));
     141}
     142
     143void CommandLineDialog::queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > &param, const std::string title, const std::string description)
     144{
     145  registerQuery(new KeyValuePairsCommandLineQuery(param, title,description));
    140146}
    141147
Note: See TracChangeset for help on using the changeset viewer.