diff options
Diffstat (limited to 'upstream/parameter/BitParameter.h')
| -rw-r--r-- | upstream/parameter/BitParameter.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/upstream/parameter/BitParameter.h b/upstream/parameter/BitParameter.h index cbe071e..0487cb4 100644 --- a/upstream/parameter/BitParameter.h +++ b/upstream/parameter/BitParameter.h @@ -39,22 +39,22 @@ public: CBitParameter(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; /// Value access // Boolean access bool access(bool &bValue, bool bSet, - CParameterAccessContext ¶meterAccessContext) const override final; + CParameterAccessContext ¶meterAccessContext) const final; // Integer Access bool access(uint32_t &uiValue, bool bSet, - CParameterAccessContext ¶meterAccessContext) const override final; + CParameterAccessContext ¶meterAccessContext) const final; // AreaConfiguration creation - virtual CAreaConfiguration *createAreaConfiguration(const CSyncerSet *pSyncerSet) const; + CAreaConfiguration *createAreaConfiguration(const CSyncerSet *pSyncerSet) const override; // Size size_t getBelongingBlockSize() const; @@ -64,10 +64,10 @@ public: private: // String 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; // Generic Access template <typename type> |
