| 262 | } |
| 263 | |
| 264 | bool TableLookup_Impl::removeIndependentVariable(const TableIndependentVariable& tableIndependentVariable) { |
| 265 | bool result = false; |
| 266 | auto modelObjectList = independentVariableList(); |
| 267 | if (modelObjectList) { |
| 268 | modelObjectList->removeModelObject(tableIndependentVariable); |
| 269 | result = true; |
| 270 | } |
| 271 | return result; |
| 272 | } |
| 273 | |
| 274 | void TableLookup_Impl::removeAllIndependentVariables() { |
| 275 | auto modelObjectList = independentVariableList(); |