Parallel/vtkTreeComposite.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00040 #ifndef __vtkTreeComposite_h
00041 #define __vtkTreeComposite_h
00042
00043 #include "vtkCompositeManager.h"
00044
00045 class VTK_PARALLEL_EXPORT vtkTreeComposite : public vtkCompositeManager
00046 {
00047 public:
00048 static vtkTreeComposite *New();
00049 vtkTypeRevisionMacro(vtkTreeComposite,vtkCompositeManager);
00050 void PrintSelf(ostream& os, vtkIndent indent);
00051
00052 protected:
00053 vtkTreeComposite();
00054 ~vtkTreeComposite();
00055
00056 private:
00057 vtkTreeComposite(const vtkTreeComposite&);
00058 void operator=(const vtkTreeComposite&);
00059 };
00060
00061 #endif