+ do files
This commit is contained in:
parent
d55182a8b0
commit
a038586edb
27 changed files with 1439 additions and 0 deletions
17
src/doModifierMass.h
Normal file
17
src/doModifierMass.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef _doModifierMass_h
|
||||
#define _doModifierMass_h
|
||||
|
||||
#include <eoFunctor.h>
|
||||
|
||||
#include "doModifier.h"
|
||||
|
||||
template < typename D >
|
||||
class doModifierMass : public doModifier< D >, public eoBF< D&, typename D::EOType&, void >
|
||||
{
|
||||
public:
|
||||
//typedef typename D::EOType::AtomType AtomType; // does not work !!!
|
||||
|
||||
// virtual void operator() ( D&, D::EOType& )=0 (provided by eoBF< A1, A2, R >)
|
||||
};
|
||||
|
||||
#endif // !_doModifierMass_h
|
||||
Reference in a new issue