21 lines
360 B
C++
21 lines
360 B
C++
// (c) Thales group, 2010
|
|
/*
|
|
Authors:
|
|
Johann Dreo <johann.dreo@thalesgroup.com>
|
|
Caner Candan <caner.candan@thalesgroup.com>
|
|
*/
|
|
|
|
#ifndef _doDistrib_h
|
|
#define _doDistrib_h
|
|
|
|
template < typename EOT >
|
|
class doDistrib
|
|
{
|
|
public:
|
|
//! Alias for the type
|
|
typedef EOT EOType;
|
|
|
|
virtual ~doDistrib(){}
|
|
};
|
|
|
|
#endif // !_doDistrib_h
|