| 1151 | |
| 1152 | |
| 1153 | void AlgorithmInfo::addParam(Algorithm& algo, const char* parameter, |
| 1154 | int& value, bool readOnly, |
| 1155 | int (Algorithm::*getter)(), |
| 1156 | void (Algorithm::*setter)(int), |
| 1157 | const string& help) |
| 1158 | { |
| 1159 | addParam_(algo, parameter, ParamType<int>::type, &value, readOnly, |
| 1160 | (Algorithm::Getter)getter, (Algorithm::Setter)setter, help); |
| 1161 | } |
| 1162 | |
| 1163 | void AlgorithmInfo::addParam(Algorithm& algo, const char* parameter, |
| 1164 | short& value, bool readOnly, |
no outgoing calls
no test coverage detected