You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/3rd/VTK7.1/include/vtkPDBReader.h

53 lines
1.4 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkPDBReader.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkPDBReader
* @brief read Molecular Data files
*
* vtkPDBReader is a source object that reads Molecule files
* The FileName must be specified
*
* @par Thanks:
* Dr. Jean M. Favre who developed and contributed this class
*/
#ifndef vtkPDBReader_h
#define vtkPDBReader_h
#include "vtkIOGeometryModule.h" // For export macro
#include "vtkMoleculeReaderBase.h"
class VTKIOGEOMETRY_EXPORT vtkPDBReader : public vtkMoleculeReaderBase
{
public:
vtkTypeMacro(vtkPDBReader,vtkMoleculeReaderBase);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkPDBReader *New();
protected:
vtkPDBReader();
~vtkPDBReader();
void ReadSpecificMolecule(FILE* fp);
private:
vtkPDBReader(const vtkPDBReader&) VTK_DELETE_FUNCTION;
void operator=(const vtkPDBReader&) VTK_DELETE_FUNCTION;
};
#endif