summaryrefslogtreecommitdiffstats
path: root/parameter/XmlDomainSerializingContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/XmlDomainSerializingContext.h')
-rw-r--r--parameter/XmlDomainSerializingContext.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/parameter/XmlDomainSerializingContext.h b/parameter/XmlDomainSerializingContext.h
index 770f14b..c63552c 100644
--- a/parameter/XmlDomainSerializingContext.h
+++ b/parameter/XmlDomainSerializingContext.h
@@ -43,10 +43,14 @@ public:
// Settings to be serialized or not
bool withSettings() const;
- // Value interpretation as Real or Raw (usefull for Fixed point parameters)
+ // Value interpretation as Real or Raw
void setValueSpaceRaw(bool bIsRaw);
bool valueSpaceIsRaw() const;
+ // Output Raw Format for user get value interpretation
+ void setOutputRawFormat(bool bIsHex);
+ bool outputRawFormatIsHex();
+
// ParameterBlackboard
const CParameterBlackboard* getParameterBlackboard() const;
@@ -59,6 +63,8 @@ private:
bool _bWithSettings;
// Value Space
bool _bValueSpaceIsRaw;
+ // Output Raw Format
+ bool _bOutputRawFormatIsHex;
// Criteria defintion
const CSelectionCriteriaDefinition* _pSelectionCriteriaDefinition;
};