+ do files
This commit is contained in:
parent
d55182a8b0
commit
a038586edb
27 changed files with 1439 additions and 0 deletions
16
src/doAlgo.h
Normal file
16
src/doAlgo.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef _doAlgo_h
|
||||
#define _doAlgo_h
|
||||
|
||||
#include <eoAlgo.h>
|
||||
|
||||
template < typename D >
|
||||
class doAlgo : public eoAlgo< typename D::EOType >
|
||||
{
|
||||
//! Alias for the type
|
||||
typedef typename D::EOType EOT;
|
||||
|
||||
public:
|
||||
virtual ~doAlgo(){}
|
||||
};
|
||||
|
||||
#endif // !_doAlgo_h
|
||||
Reference in a new issue