summaryrefslogtreecommitdiffstats
path: root/parameter/SubsystemObjectCreator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/SubsystemObjectCreator.cpp')
-rw-r--r--parameter/SubsystemObjectCreator.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/parameter/SubsystemObjectCreator.cpp b/parameter/SubsystemObjectCreator.cpp
index b0f0dde..3a719bc 100644
--- a/parameter/SubsystemObjectCreator.cpp
+++ b/parameter/SubsystemObjectCreator.cpp
@@ -30,8 +30,8 @@
*/
#include "SubsystemObjectCreator.h"
-CSubsystemObjectCreator::CSubsystemObjectCreator(const string& strMappingKey, uint32_t uiAncestorIdMask)
- : _strMappingKey(strMappingKey), _uiAncestorIdMask(uiAncestorIdMask)
+CSubsystemObjectCreator::CSubsystemObjectCreator(const string& strMappingKey, uint32_t uiAncestorIdMask, uint32_t uiMaxConfigurableElementSize)
+ : _strMappingKey(strMappingKey), _uiAncestorIdMask(uiAncestorIdMask), _uiMaxConfigurableElementSize(uiMaxConfigurableElementSize)
{
}
@@ -45,3 +45,8 @@ uint32_t CSubsystemObjectCreator::getAncestorMask() const
{
return _uiAncestorIdMask;
}
+
+uint32_t CSubsystemObjectCreator::getMaxConfigurableElementSize() const
+{
+ return _uiMaxConfigurableElementSize;
+}