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 =========================================================================*/
35 #ifndef vtkPLYReader_h
36 #define vtkPLYReader_h
37 
38 #include "vtkIOPLYModule.h" // For export macro
40 
42 {
43 public:
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
48  static vtkPLYReader *New();
49 
51  static int CanReadFile(const char *filename);
52 
53 protected:
54  vtkPLYReader();
55  ~vtkPLYReader();
56 
58 private:
59  vtkPLYReader(const vtkPLYReader&); // Not implemented.
60  void operator=(const vtkPLYReader&); // Not implemented.
61 };
62 
63 #endif
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that read models from a file.
a simple class to control print indentation
Definition: vtkIndent.h:38
read Stanford University PLY polygonal file format
Definition: vtkPLYReader.h:41
Store zero or more vtkInformation instances.
#define VTKIOPLY_EXPORT