| 211 | } |
| 212 | |
| 213 | void vtkFidesReader::SetDataSourcePath(const std::string& name, const std::string& path) |
| 214 | { |
| 215 | if (this->Impl->NumberOfDataSources <= 0) |
| 216 | { |
| 217 | this->Impl->SetNumberOfDataSources(); |
| 218 | } |
| 219 | vtkDebugMacro(<< "Number of data sources: " << this->Impl->NumberOfDataSources); |
| 220 | vtkDebugMacro(<< "source " << name << "'s path is " << path); |
| 221 | this->Impl->Paths[name] = path; |
| 222 | this->Modified(); |
| 223 | } |
| 224 | |
| 225 | void vtkFidesReader::SetDataSourceEngine(const std::string& name, const std::string& engine) |
| 226 | { |