VTK  9.1.0
vtkPDBReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPDBReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
55 #ifndef vtkPDBReader_h
56 #define vtkPDBReader_h
57 
58 #include "vtkIOChemistryModule.h" // For export macro
59 #include "vtkMoleculeReaderBase.h"
60 
61 class VTKIOCHEMISTRY_EXPORT vtkPDBReader : public vtkMoleculeReaderBase
62 {
63 public:
65  void PrintSelf(ostream& os, vtkIndent indent) override;
66 
67  static vtkPDBReader* New();
68 
69 protected:
71  ~vtkPDBReader() override;
72 
73  void ReadSpecificMolecule(FILE* fp) override;
74 
75 private:
76  vtkPDBReader(const vtkPDBReader&) = delete;
77  void operator=(const vtkPDBReader&) = delete;
78 };
79 
80 #endif
a simple class to control print indentation
Definition: vtkIndent.h:113
Read molecular data files.
read Molecular Data files
Definition: vtkPDBReader.h:62
~vtkPDBReader() override
static vtkPDBReader * New()
void ReadSpecificMolecule(FILE *fp) override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.