]> Creatis software - clitk.git/blob - vv/vvClipPolyData.h
Debug RTStruct conversion with empty struc
[clitk.git] / vv / vvClipPolyData.h
1 #ifndef VVCLIPPOLYDATA_H
2 #define VVCLIPPOLYDATA_H
3
4 #include "vtkClipPolyData.h"
5
6 class vvClipPolyData : public vtkClipPolyData
7 {
8 public:
9   vtkTypeMacro(vvClipPolyData,vtkClipPolyData);
10   void PrintSelf(ostream& os, vtkIndent indent);
11
12   static vvClipPolyData *New();
13
14 protected:
15   vvClipPolyData();
16   ~vvClipPolyData();
17
18   int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
19
20 private:
21   vvClipPolyData(const vvClipPolyData&);  // Not implemented.
22   void operator=(const vvClipPolyData&);  // Not implemented.
23 };
24
25 #endif // VVCLIPPOLYDATA_H