dox/Parallel/vtkTreeComposite.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00022
#ifndef __vtkTreeComposite_h
00023
#define __vtkTreeComposite_h
00024
00025
#include "vtkCompositeManager.h"
00026
00027 class VTK_PARALLEL_EXPORT vtkTreeComposite :
public vtkCompositeManager
00028 {
00029
public:
00030
static vtkTreeComposite *
New();
00031 vtkTypeRevisionMacro(vtkTreeComposite,
vtkCompositeManager);
00032
void PrintSelf(ostream& os,
vtkIndent indent);
00033
00034
protected:
00035 vtkTreeComposite();
00036 ~vtkTreeComposite();
00037
00038
private:
00039 vtkTreeComposite(
const vtkTreeComposite&);
00040
void operator=(
const vtkTreeComposite&);
00041 };
00042
00043
#endif