Add a reference to the template type in eoStat
This commit is contained in:
parent
f4b71dffad
commit
8679da695c
1 changed files with 2 additions and 0 deletions
|
|
@ -85,6 +85,7 @@ template <class EOT, class T>
|
||||||
class eoStat : public eoValueParam<T>, public eoStatBase<EOT>
|
class eoStat : public eoValueParam<T>, public eoStatBase<EOT>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
typedef EOT EOType;
|
||||||
|
|
||||||
eoStat(T _value, std::string _description)
|
eoStat(T _value, std::string _description)
|
||||||
: eoValueParam<T>(_value, _description)
|
: eoValueParam<T>(_value, _description)
|
||||||
|
|
@ -121,6 +122,7 @@ template <class EOT, class ParamType>
|
||||||
class eoSortedStat : public eoSortedStatBase<EOT>, public eoValueParam<ParamType>
|
class eoSortedStat : public eoSortedStatBase<EOT>, public eoValueParam<ParamType>
|
||||||
{
|
{
|
||||||
public :
|
public :
|
||||||
|
typedef EOT EOType;
|
||||||
eoSortedStat(ParamType _value, std::string _desc) : eoValueParam<ParamType>(_value, _desc) {}
|
eoSortedStat(ParamType _value, std::string _desc) : eoValueParam<ParamType>(_value, _desc) {}
|
||||||
virtual std::string className(void) const { return "eoSortedStat"; }
|
virtual std::string className(void) const { return "eoSortedStat"; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue