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
00026 #ifndef __vtkTreeComposite_h
00027 #define __vtkTreeComposite_h
00028
00029 #include "vtkCompositeManager.h"
00030
00031 class VTK_PARALLEL_EXPORT vtkTreeComposite : public vtkCompositeManager
00032 {
00033 public:
00034 static vtkTreeComposite *New();
00035 vtkTypeRevisionMacro(vtkTreeComposite,vtkCompositeManager);
00036 void PrintSelf(ostream& os, vtkIndent indent);
00037
00038 protected:
00039 vtkTreeComposite();
00040 ~vtkTreeComposite();
00041
00042 private:
00043 vtkTreeComposite(const vtkTreeComposite&);
00044 void operator=(const vtkTreeComposite&);
00045 };
00046
00047 #endif