00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef MPI_ChannelAddress_h
00037 #define MPI_ChannelAddress_h
00038
00039 #include <ChannelAddress.h>
00040 #include <mpi.h>
00041
00043 class MPI_ChannelAddress: public ChannelAddress
00044 {
00045 public:
00047 MPI_ChannelAddress(int otherProcessTag);
00049 MPI_ChannelAddress(int otherProcessTag, MPI_Comm otherComm);
00051 virtual ~MPI_ChannelAddress();
00052
00054 friend #include <MPI_Channel.h>
00055
00056 private:
00057 int otherTag;
00059 MPI_Comm otherComm;
00060
00061 };
00062
00063 #endif
00064
00065 �