VTK  9.2.6
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=========================================================================*/
38#ifndef vtkPDBReader_h
39#define vtkPDBReader_h
40
41#include "vtkIOChemistryModule.h" // For export macro
43
44class VTKIOCHEMISTRY_EXPORT vtkPDBReader : public vtkMoleculeReaderBase
45{
46public:
48 void PrintSelf(ostream& os, vtkIndent indent) override;
49
50 static vtkPDBReader* New();
51
52protected:
54 ~vtkPDBReader() override;
55
56 void ReadSpecificMolecule(FILE* fp) override;
57
58private:
59 vtkPDBReader(const vtkPDBReader&) = delete;
60 void operator=(const vtkPDBReader&) = delete;
61};
62
63#endif
a simple class to control print indentation
Definition vtkIndent.h:49
Read molecular data files.
read Molecular Data files
~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.