00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPDBReader.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00028 #ifndef __vtkPDBReader_h 00029 #define __vtkPDBReader_h 00030 00031 #include "vtkMoleculeReaderBase.h" 00032 00033 00034 class VTK_IO_EXPORT vtkPDBReader : public vtkMoleculeReaderBase 00035 { 00036 public: 00037 vtkTypeMacro(vtkPDBReader,vtkMoleculeReaderBase); 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00040 static vtkPDBReader *New(); 00041 00042 protected: 00043 vtkPDBReader(); 00044 ~vtkPDBReader(); 00045 00046 void ReadSpecificMolecule(FILE* fp); 00047 00048 private: 00049 vtkPDBReader(const vtkPDBReader&); // Not implemented. 00050 void operator=(const vtkPDBReader&); // Not implemented. 00051 }; 00052 00053 #endif