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:
56 
58 private:
59  vtkPLYReader(const vtkPLYReader&); // Not implemented.
60  void operator=(const vtkPLYReader&); // Not implemented.
61 };
62 
63 #endif
vtkPLYReader::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkPLYReader::~vtkPLYReader
~vtkPLYReader()
vtkPLYReader::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkPLYReader::New
static vtkPLYReader * New()
vtkPLYReader::CanReadFile
static int CanReadFile(const char *filename)
vtkAbstractPolyDataReader
Superclass for algorithms that read models from a file.
Definition: vtkAbstractPolyDataReader.h:36
vtkIOPLYModule.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkPLYReader::vtkPLYReader
vtkPLYReader()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
VTKIOPLY_EXPORT
#define VTKIOPLY_EXPORT
Definition: vtkIOPLYModule.h:15
vtkAbstractPolyDataReader.h
vtkPLYReader
read Stanford University PLY polygonal file format
Definition: vtkPLYReader.h:42