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 ChannelAddress_h
00037 #define ChannelAddress_h
00038
00039 #ifdef _UNIX
00040
00041
00042 #define SOCKET_TYPE 1
00043 #define MPI_TYPE 2
00044
00045 #endif
00046
00048 class ChannelAddress
00049 {
00050 public:
00052 ChannelAddress(int type);
00054 virtual ~ChannelAddress();
00055
00057 virtual int getType(void) const;
00058
00059 private:
00061 int theType;
00062 };
00063
00064
00065 #endif
00066 ÿ