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=========================================================================*/
35#ifndef vtkPDBReader_h
36#define vtkPDBReader_h
37
38#include "vtkIOChemistryModule.h" // For export macro
40
41class VTKIOCHEMISTRY_EXPORT vtkPDBReader : public vtkMoleculeReaderBase
42{
43public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
47 static vtkPDBReader* New();
48
49protected:
51 ~vtkPDBReader() override;
52
53 void ReadSpecificMolecule(FILE* fp) override;
54
55private:
56 vtkPDBReader(const vtkPDBReader&) = delete;
57 void operator=(const vtkPDBReader&) = delete;
58};
59
60#endif
a simple class to control print indentation
Definition: vtkIndent.h:43
Read molecular data files.
read Molecular Data files
Definition: vtkPDBReader.h:42
~vtkPDBReader() override
void ReadSpecificMolecule(FILE *fp) override
static vtkPDBReader * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.