diff options
Diffstat (limited to 'upstream/parameter/Parameter.h')
| -rw-r--r-- | upstream/parameter/Parameter.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/upstream/parameter/Parameter.h b/upstream/parameter/Parameter.h index 2c97409..f6fa60a 100644 --- a/upstream/parameter/Parameter.h +++ b/upstream/parameter/Parameter.h @@ -41,15 +41,15 @@ public: CParameter(const std::string &strName, const CTypeElement *pTypeElement); // Instantiation, allocation - virtual size_t getFootPrint() const; + size_t getFootPrint() const override; // Type - virtual Type getType() const; + Type getType() const override; // XML configuration settings parsing/composing - virtual bool serializeXmlSettings( + bool serializeXmlSettings( CXmlElement &xmlConfigurationSettingsElementContent, - CConfigurationAccessContext &configurationAccessContext) const; + CConfigurationAccessContext &configurationAccessContext) const override; // Boolean access bool access(bool &bValue, bool bSet, @@ -69,13 +69,13 @@ public: protected: // Used for simulation and virtual subsystems - virtual void setDefaultValues(CParameterAccessContext ¶meterAccessContext) const; + void setDefaultValues(CParameterAccessContext ¶meterAccessContext) const override; // Actual value access - virtual bool doSetValue(const std::string &strValue, size_t offset, - CParameterAccessContext ¶meterAccessContext) const; - virtual void doGetValue(std::string &strValue, size_t offset, - CParameterAccessContext ¶meterAccessContext) const; + bool doSetValue(const std::string &strValue, size_t offset, + CParameterAccessContext ¶meterAccessContext) const override; + void doGetValue(std::string &strValue, size_t offset, + CParameterAccessContext ¶meterAccessContext) const override; // Value space handling for configuration import void handleValueSpaceAttribute(CXmlElement &xmlConfigurableElementSettingsElement, |
