From 8679da695c288af5214df5b595e01a9668e28532 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Thu, 13 Jun 2013 14:48:40 +0200 Subject: [PATCH] Add a reference to the template type in eoStat --- eo/src/utils/eoStat.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eo/src/utils/eoStat.h b/eo/src/utils/eoStat.h index ccf3c4137..e44eff33d 100644 --- a/eo/src/utils/eoStat.h +++ b/eo/src/utils/eoStat.h @@ -85,6 +85,7 @@ template class eoStat : public eoValueParam, public eoStatBase { public: + typedef EOT EOType; eoStat(T _value, std::string _description) : eoValueParam(_value, _description) @@ -121,6 +122,7 @@ template class eoSortedStat : public eoSortedStatBase, public eoValueParam { public : + typedef EOT EOType; eoSortedStat(ParamType _value, std::string _desc) : eoValueParam(_value, _desc) {} virtual std::string className(void) const { return "eoSortedStat"; }