VTK
vtkPLYReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPLYReader.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 =========================================================================*/
36 #ifndef vtkPLYReader_h
37 #define vtkPLYReader_h
38 
39 #include "vtkIOPLYModule.h" // For export macro
41 
42 class VTKIOPLY_EXPORT vtkPLYReader : public vtkAbstractPolyDataReader
43 {
44 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
51  static vtkPLYReader *New();
52 
56  static int CanReadFile(const char *filename);
57 
58 protected:
59  vtkPLYReader();
60  ~vtkPLYReader();
61 
63 private:
64  vtkPLYReader(const vtkPLYReader&) VTK_DELETE_FUNCTION;
65  void operator=(const vtkPLYReader&) VTK_DELETE_FUNCTION;
66 };
67 
68 #endif
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that read models from a file.
a simple class to control print indentation
Definition: vtkIndent.h:39
read Stanford University PLY polygonal file format
Definition: vtkPLYReader.h:42
Store zero or more vtkInformation instances.