VTK
dox/Parallel/vtkPYoungsMaterialInterface.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkPYoungsMaterialInterface.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00032 #ifndef __vtkPYoungsMaterialInterface_h
00033 #define __vtkPYoungsMaterialInterface_h
00034 
00035 #include "vtkYoungsMaterialInterface.h"
00036 
00037 class vtkMultiProcessController;
00038 
00039 class VTK_PARALLEL_EXPORT vtkPYoungsMaterialInterface : public vtkYoungsMaterialInterface
00040 {
00041 public:
00042   static vtkPYoungsMaterialInterface* New();
00043   vtkTypeMacro(vtkPYoungsMaterialInterface,vtkYoungsMaterialInterface);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00047   virtual void Aggregate ( int, int* );
00048 
00050 
00052   virtual void SetController(vtkMultiProcessController*);
00053   vtkGetObjectMacro(Controller, vtkMultiProcessController);
00055 
00056 protected:
00057   vtkPYoungsMaterialInterface ();
00058   virtual ~vtkPYoungsMaterialInterface ();
00059 
00060   vtkMultiProcessController* Controller;
00061 
00062 private:
00063   vtkPYoungsMaterialInterface(const vtkPYoungsMaterialInterface&); // Not implemented
00064   void operator=(const vtkPYoungsMaterialInterface&); // Not implemented
00065 };
00066 
00067 #endif /* VTK_PYOUNGS_MATERIAL_INTERFACE_H */