- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineDialog.cpp
r163110 r33e801 136 136 } 137 137 138 void CommandLineDialog::queryRandomNumberDistribution_Parameters(Parameter<RandomNumberDistribution_Parameters> ¶m, const std::string title, const std::string description){ 139 registerQuery(new RandomNumberDistribution_ParametersCommandLineQuery(param, title, description)); 138 void CommandLineDialog::queryKeyValuePair(Parameter<KeyValuePair> ¶m, const std::string title, const std::string description) 139 { 140 registerQuery(new KeyValuePairCommandLineQuery(param, title,description)); 141 } 142 143 void CommandLineDialog::queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > ¶m, const std::string title, const std::string description) 144 { 145 registerQuery(new KeyValuePairsCommandLineQuery(param, title,description)); 140 146 } 141 147
Note:
See TracChangeset
for help on using the changeset viewer.