dox/Parallel/vtkMPI.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
#ifndef __vtkMPI_h
00018
#define __vtkMPI_h
00019
00020
#include "mpi.h"
00021
#include "vtkSystemIncludes.h"
00022
00023 class VTK_PARALLEL_EXPORT vtkMPICommunicatorOpaqueComm
00024 {
00025
public:
00026 vtkMPICommunicatorOpaqueComm();
00027
00028 MPI_Comm* GetHandle();
00029
00030
friend class vtkMPICommunicator;
00031
friend class vtkMPIController;
00032
00033
protected:
00034 MPI_Comm* Handle;
00035 };
00036
00037
00038
#endif // __vtkMPI_h