#include <datahandleif.hh>
Template parameters:
MessageBufferImp
implementation of message buffer used by the grids communication method Public Member Functions | |
MessageBufferIF (MessageBufferImp &buff) | |
stores reference to original buffer buff | |
template<class T> | |
void | write (const T &val) |
just wraps the call of the internal buffer method write which writes the data of type T from the buffer by using the assigment operator of T | |
template<class T> | |
void | read (T &val) const |
just wraps the call of the internal buffer method read which reads the data of type T from the buffer by using the assigment operator of T |
void Dune::MessageBufferIF< MessageBufferImp >::write | ( | const T & | val | ) | [inline] |
just wraps the call of the internal buffer method write which writes the data of type T from the buffer by using the assigment operator of T
val | reference to object that is written |
void Dune::MessageBufferIF< MessageBufferImp >::read | ( | T & | val | ) | const [inline] |
just wraps the call of the internal buffer method read which reads the data of type T from the buffer by using the assigment operator of T
val | reference to object that is read |