23 lines
495 B
C++
23 lines
495 B
C++
// (c) Thales group, 2010
|
|
/*
|
|
Authors:
|
|
Johann Dreo <johann.dreo@thalesgroup.com>
|
|
Caner Candan <caner.candan@thalesgroup.com>
|
|
*/
|
|
|
|
#ifndef _doEstimator_h
|
|
#define _doEstimator_h
|
|
|
|
#include <eoPop.h>
|
|
#include <eoFunctor.h>
|
|
|
|
template < typename D >
|
|
class doEstimator : public eoUF< eoPop< typename D::EOType >&, D >
|
|
{
|
|
public:
|
|
typedef typename D::EOType EOType;
|
|
|
|
// virtual D operator() ( eoPop< EOT >& )=0 (provided by eoUF< A1, R >)
|
|
};
|
|
|
|
#endif // !_doEstimator_h
|