Steps of MpiJob are now functors which can be wrapped (using decorator pattern).

This commit is contained in:
Benjamin Bouvier 2012-07-03 13:57:20 +02:00
commit 6bb2ccfbd6
4 changed files with 158 additions and 50 deletions

View file

@ -44,6 +44,10 @@ namespace eo
void data( JobData* _d )
{
d = _d;
if( wrapped )
{
wrapped->data( _d );
}
}
protected: