00001 //========================================================================= 00002 // CPTRPASSINGMPICOMM.H - part of 00003 // 00004 // OMNeT++/OMNEST 00005 // Discrete System Simulation in C++ 00006 // 00007 // Written by: Andras Varga, 2005 00008 // 00009 //========================================================================= 00010 00011 /*--------------------------------------------------------------* 00012 Copyright (C) 2003-2005 Andras Varga 00013 00014 This file is distributed WITHOUT ANY WARRANTY. See the file 00015 `license' for details on this and other legal matters. 00016 *--------------------------------------------------------------*/ 00017 00018 00019 #include "cparsimcomm.h" 00020 00021 #ifndef __CPTRPASSINGMPICOMM_H__ 00022 #define __CPTRPASSINGMPICOMM_H__ 00023 00024 00031 class cPtrPassingMPICommunications : public cMPICommunications 00032 { 00033 public: 00037 cPtrPassingMPICommunications(); 00038 00042 virtual cMPICommBuffer *doCreateCommBuffer(); 00043 }; 00044 00045 #endif 00046 00047