------------------------------------------------------------------------------
| 29 | |
| 30 | //------------------------------------------------------------------------------ |
| 31 | bool vtkInformationIntegerRequestKey::NeedToExecute( |
| 32 | vtkInformation* pipelineInfo, vtkInformation* dobjInfo) |
| 33 | { |
| 34 | if (!dobjInfo->Has(this->DataKey) || dobjInfo->Get(this->DataKey) != pipelineInfo->Get(this)) |
| 35 | { |
| 36 | return true; |
| 37 | } |
| 38 | return false; |
| 39 | } |
| 40 | |
| 41 | //------------------------------------------------------------------------------ |
| 42 | void vtkInformationIntegerRequestKey::StoreMetaData( |
no test coverage detected