summaryrefslogtreecommitdiffstats
path: root/parameter/BitParameterType.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/BitParameterType.h')
-rw-r--r--parameter/BitParameterType.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/parameter/BitParameterType.h b/parameter/BitParameterType.h
index 6cd86c4..ebfec7e 100644
--- a/parameter/BitParameterType.h
+++ b/parameter/BitParameterType.h
@@ -63,8 +63,8 @@ public:
private:
// Instantiation
virtual CInstanceConfigurableElement* doInstantiate() const;
- // Max value
- uint32_t getMaxValue() const;
+ // Max encodable value
+ uint32_t getMaxEncodableValue() const;
// Biwise mask
uint32_t getMask() const;
// Check data has no bit set outside available range
@@ -74,4 +74,6 @@ private:
uint32_t _uiBitPos;
// Size in bits
uint32_t _uiBitSize;
+ // Max value
+ uint32_t _uiMax;
};