--- /dev/null
+<?xml version="1.0" encoding="iso-8859-1"?>
+
+<blackbox name="PolyDataWriter" type="VTK_PolyDataAlgorithm">
+
+<author>jp r at creatis.insa-lyon.fr</author>
+<description><PRE>Writes .vtk mesh format (bbfication of vtkPolyDataWriter)</PRE></description>
+<category>mesh;read/write</category>
+
+<include>vtkPolyDataWriter.h</include>
+<include>vtkPolyData.h</include>
+<vtkobject>vtkPolyDataWriter</vtkobject>
+
+<input name="Filename" type="std::string" nature="file name" description="Name of the file to write"/>
+<input name="In" type="vtkPolyData*" description="Input mesh" />
+
+ <process><PRE>
+ vtkPolyDataWriter* w = vtkPolyDataWriter::New();
+ bbGetInputIn()->Update();
+ w->SetInput(bbGetInputIn());
+ w->SetFileName(bbGetInputFilename().c_str());
+ w->Update();
+ w->Write();
+ w->Delete();
+ </PRE></process>
+</blackbox>
+
+