------------------------------------------------------------------------------
| 310 | |
| 311 | //------------------------------------------------------------------------------ |
| 312 | void vtkPlot3DMetaReader::SetFunctionNames(Json::Value* val) |
| 313 | { |
| 314 | const Json::Value& functionNames = *val; |
| 315 | for (size_t index = 0; index < functionNames.size(); ++index) |
| 316 | { |
| 317 | this->Reader->AddFunctionName(functionNames[(int)index].asString()); |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | //------------------------------------------------------------------------------ |
| 322 | int vtkPlot3DMetaReader::RequestInformation(vtkInformation* vtkNotUsed(request), |