| 322 | } |
| 323 | |
| 324 | Variable* |
| 325 | Step::addVar( |
| 326 | const std::string& name, |
| 327 | const std::string& type, |
| 328 | const std::string& defaultValue) |
| 329 | { |
| 330 | Variable *var = new Variable(name, type, defaultValue); |
| 331 | vars_.push_back(var); |
| 332 | return var; |
| 333 | } |
| 334 | |
| 335 | Variable* |
| 336 | Step::addConst( |
nothing calls this directly
no outgoing calls
no test coverage detected