From 99b3e852e553103ff75ed38117baa5bce2befbdb Mon Sep 17 00:00:00 2001 From: David Wagner Date: Thu, 19 Mar 2015 16:35:47 +0100 Subject: Re-implement the Tokenizer class from scratch It didn't have a license header. Even though we received explicit authorization to use it, it wasn't a comfortable situation. This is an original implementation that only keeps the APIs we use in the parameter-framework and keep them identical (except for a small exception). The behaviour is also exactly the same. Change-Id: I85a69c76027ee026a693d79cd19edd3b86796f9d Signed-off-by: David Wagner --- parameter/ArrayParameter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parameter') diff --git a/parameter/ArrayParameter.cpp b/parameter/ArrayParameter.cpp index c946392..ec69191 100644 --- a/parameter/ArrayParameter.cpp +++ b/parameter/ArrayParameter.cpp @@ -257,7 +257,7 @@ bool CArrayParameter::getIndex(CPathNavigator& pathNavigator, uint32_t& uiIndex, bool CArrayParameter::setValues(uint32_t uiStartIndex, uint32_t uiBaseOffset, const string& strValue, CParameterAccessContext& parameterAccessContext) const { // Deal with value(s) - Tokenizer tok(strValue, DEFAULT_DELIMITER + ","); + Tokenizer tok(strValue, Tokenizer::defaultDelimiters + ","); std::vector astrValues = tok.split(); uint32_t uiNbValues = astrValues.size(); -- cgit v1.1