VTK
dox/Chemistry/vtkMoleculeToBondStickFilter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkMoleculeToBondStickFilter.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 =========================================================================*/
00020 #ifndef __vtkMoleculeToBondStickFilter_h
00021 #define __vtkMoleculeToBondStickFilter_h
00022 
00023 #include "vtkMoleculeToPolyDataFilter.h"
00024 
00025 class vtkMolecule;
00026 
00027 class VTK_CHEMISTRY_EXPORT vtkMoleculeToBondStickFilter
00028 : public vtkMoleculeToPolyDataFilter
00029 {
00030  public:
00031   vtkTypeMacro(vtkMoleculeToBondStickFilter,vtkMoleculeToPolyDataFilter);
00032   void PrintSelf(ostream& os, vtkIndent indent);
00033 
00034   static vtkMoleculeToBondStickFilter *New();
00035 
00036 protected:
00037   vtkMoleculeToBondStickFilter();
00038   ~vtkMoleculeToBondStickFilter();
00039 
00040   int RequestData(vtkInformation *, vtkInformationVector **,
00041                   vtkInformationVector *);
00042 
00043 private:
00044   vtkMoleculeToBondStickFilter(const vtkMoleculeToBondStickFilter&);  // Not implemented.
00045   void operator=(const vtkMoleculeToBondStickFilter&);  // Not implemented.
00046 };
00047 
00048 #endif