From 1958188faf3324611574e54ff818938a8db316bb Mon Sep 17 00:00:00 2001 From: anschrammh Date: Sat, 13 Apr 2019 13:32:03 +0200 Subject: [PATCH] Added getters (isQuotedParameter and isQuotedValue) --- src/app/CFGParameterValue.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/CFGParameterValue.h b/src/app/CFGParameterValue.h index ce4ff58..4b745de 100644 --- a/src/app/CFGParameterValue.h +++ b/src/app/CFGParameterValue.h @@ -27,7 +27,9 @@ public: return strcmp(_value,"true") == 0 || strcmp(_value,"TRUE") == 0 ? true : false; } const char *getParameter() const{return _parameter == NULL ? "" : _parameter;} - virtual const char *toString() + bool isQuotedParameter()const{return _quotedParameter;} + bool isQuotedValue()const{return _quotedValue;} + virtual const char *toString() { return _value; }