diff options
Diffstat (limited to 'parameter/ParameterBlock.h')
-rw-r--r-- | parameter/ParameterBlock.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/parameter/ParameterBlock.h b/parameter/ParameterBlock.h index 580b0b4..d65b75c 100644 --- a/parameter/ParameterBlock.h +++ b/parameter/ParameterBlock.h @@ -34,9 +34,15 @@ class CParameterBlock : public CInstanceConfigurableElement { public: - CParameterBlock(const string& strName, const CTypeElement* pTypeElement); + CParameterBlock(const string& strName, const CTypeElement* pTypeElement) + : CInstanceConfigurableElement(strName, pTypeElement) + { + } // Type - virtual Type getType() const; + virtual Type getType() const + { + return EParameterBlock; + } }; |