00001 /* $Id: ssPolyDataRecordWriter.h,v 1.5 2005/11/02 03:55:45 pfb Exp $ */ 00002 00003 #ifndef _ssPolyDataRecordWriter_h 00004 #define _ssPolyDataRecordWriter_h 00005 00010 #include "ssRawDataWriter.h" 00011 00012 class VTK_EXPORT ssPolyDataRecordWriter : public ssRawDataWriter 00013 { 00014 //**************************************************************************** 00015 public: 00016 00022 static ssPolyDataRecordWriter *New(); 00023 00027 vtkTypeMacro(ssPolyDataRecordWriter, ssRawDataWriter); 00028 00034 void PrintSelf(ostream& os, vtkIndent indent); 00035 00036 #if 0 00037 00041 void SetInput(vtkPolyData *input); 00042 #endif 00043 00044 //**************************************************************************** 00045 protected: 00049 ssPolyDataRecordWriter(); 00050 00054 virtual ~ssPolyDataRecordWriter(); 00055 00059 virtual void WriteData(); 00060 }; 00061 00062 /* 00063 * $Log: ssPolyDataRecordWriter.h,v $ 00064 * Revision 1.5 2005/11/02 03:55:45 pfb 00065 * Fixed doxygen tags. 00066 * 00067 * Revision 1.4 2005/09/30 05:04:29 pfb 00068 * Update from VTK 4.4 to VTK 4.5 00069 * 00070 * Revision 1.3 2005/05/11 11:40:11 pfb 00071 * Added module info. 00072 * 00073 * Revision 1.2 2003/05/23 17:56:08 pfb 00074 * Moved from Simulator/Common/C++ to C++/Common/Vtk/ReaderWriter. 00075 * 00076 * Revision 1.1 2001/12/11 13:01:10 pfb 00077 * Initial rev. 00078 * 00079 * 00080 */ 00081 00085 #endif 00086