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 =========================================================================*/
33 #ifndef vtkPLYReader_h
34 #define vtkPLYReader_h
35 
36 #include "vtkIOPLYModule.h" // For export macro
38 
39 class VTKIOPLY_EXPORT vtkPLYReader : public vtkAbstractPolyDataReader
40 {
41 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
48  static vtkPLYReader *New();
49 
53  static int CanReadFile(const char *filename);
54 
55 protected:
56  vtkPLYReader();
57  ~vtkPLYReader() override;
58 
60 private:
61  vtkPLYReader(const vtkPLYReader&) = delete;
62  void operator=(const vtkPLYReader&) = delete;
63 };
64 
65 #endif
Store vtkAlgorithm input/output information.
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:33
read Stanford University PLY polygonal file format
Definition: vtkPLYReader.h:39
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.