FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
VTKMeshExporter.hpp
Go to the documentation of this file.
1 #ifndef VTKMESHEXPORTER_HPP_
2 #define VTKMESHEXPORTER_HPP_
3 
4 #include <vtkPolyDataAlgorithm.h>
5 #include "FAST/ProcessObject.hpp"
6 
7 namespace fast {
8 
9 class FAST_EXPORT VTKMeshExporter : public vtkPolyDataAlgorithm, public ProcessObject {
10  public:
11  vtkTypeMacro(VTKMeshExporter,vtkPolyDataAlgorithm);
12  static VTKMeshExporter *New();
13  std::string getNameOfClass() const { return "VTKMeshExporter"; };
14  private:
16  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
17  void execute() {};
18 
19 };
20 
21 } // end namespace fast
22 
23 
24 
25 #endif /* VTKIMAGEEXPORTER_HPP_ */
fast::VTKMeshExporter
Definition: VTKMeshExporter.hpp:9
fast
Definition: AffineTransformation.hpp:7
fast::VTKMeshExporter::getNameOfClass
std::string getNameOfClass() const
Definition: VTKMeshExporter.hpp:13
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22