VTK
vtkRTXMLPolyDataReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRTXMLPolyDataReader.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 =========================================================================*/
22 #ifndef vtkRTXMLPolyDataReader_h
23 #define vtkRTXMLPolyDataReader_h
24 
25 #include "vtkIOXMLModule.h" // For export macro
26 #include "vtkXMLPolyDataReader.h"
27 
28 class vtkRTXMLPolyDataReaderInternals;
29 
31 {
32 public:
34  void PrintSelf(ostream& os, vtkIndent indent);
35  static vtkRTXMLPolyDataReader* New();
36 
37  // This sets the DataLocation and also
38  // Reset the reader by calling ResetReader()
39  void SetLocation(const char* dataLocation);
40  vtkGetStringMacro(DataLocation);
41 
44  virtual void UpdateToNextFile();
45 
47  virtual int NewDataAvailable();
48 
54  virtual void ResetReader();
55 
58  const char* GetNextFileName();
59 
60 protected:
63 
65 
66  vtkSetStringMacro(DataLocation);
68 
69  void InitializeToCurrentDir();
70  int IsProcessed(const char*);
71  char* GetDataFileFullPathName(const char*);
72 
74 
76  char* DataLocation;
77  vtkRTXMLPolyDataReaderInternals* Internal;
79 
80 private:
81  vtkRTXMLPolyDataReader(const vtkRTXMLPolyDataReader&); // Not implemented.
82  void operator=(const vtkRTXMLPolyDataReader&); // Not implemented.
83 };
84 
85 #endif
vtkRTXMLPolyDataReaderInternals * Internal
Read VTK XML PolyData files.
static vtkXMLPolyDataReader * New()
Read RealTime VTK XML PolyData files.
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKIOXML_EXPORT
void PrintSelf(ostream &os, vtkIndent indent)