#include "vtkToolCollection.h" #include "vtkTool.h" #include vtkCxxRevisionMacro(vtkToolCollection, "$Revision: 0.1 $"); void vtkToolCollection::InsertarHerramienta(vtkTool *a) { this->vtkCollection::AddItem((vtkObject *) a); } vtkTool* vtkToolCollection::GetToolOnPosition(int i) { return static_cast (this->GetItemAsObject(i)); } //---------------------------------------------------------------------------- void vtkToolCollection::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os,indent); }