00001 //========================================================================= 00002 // CPTRPASSINGMPICOMMBUFFER.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 #ifndef __CPTRPASSINGMPICOMMBUFFER_H__ 00019 #define __CPTRPASSINGMPICOMMBUFFER_H__ 00020 00021 #include "cmpicommbuffer.h" 00022 00023 00031 class cPtrPassingMPICommBuffer : public cMPICommBuffer 00032 { 00033 public: 00037 cPtrPassingMPICommBuffer(); 00038 00042 virtual void packObject(cObject *obj); 00043 00047 virtual cObject *unpackObject(); 00048 }; 00049 00050 #endif 00051