------------------------------------------------------------------------------
| 251 | |
| 252 | //------------------------------------------------------------------------------ |
| 253 | void vtkPlot3DMetaReader::AddFunctions(Json::Value* val) |
| 254 | { |
| 255 | const Json::Value& functions = *val; |
| 256 | for (size_t index = 0; index < functions.size(); ++index) |
| 257 | { |
| 258 | this->Reader->AddFunction(functions[(int)index].asInt()); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | //------------------------------------------------------------------------------ |
| 263 | void vtkPlot3DMetaReader::SetFileNames(Json::Value* val) |
nothing calls this directly
no test coverage detected