Added getters (isQuotedParameter and isQuotedValue)
This commit is contained in:
parent
7598ca9100
commit
1958188faf
@ -27,6 +27,8 @@ public:
|
|||||||
return strcmp(_value,"true") == 0 || strcmp(_value,"TRUE") == 0 ? true : false;
|
return strcmp(_value,"true") == 0 || strcmp(_value,"TRUE") == 0 ? true : false;
|
||||||
}
|
}
|
||||||
const char *getParameter() const{return _parameter == NULL ? "" : _parameter;}
|
const char *getParameter() const{return _parameter == NULL ? "" : _parameter;}
|
||||||
|
bool isQuotedParameter()const{return _quotedParameter;}
|
||||||
|
bool isQuotedValue()const{return _quotedValue;}
|
||||||
virtual const char *toString()
|
virtual const char *toString()
|
||||||
{
|
{
|
||||||
return _value;
|
return _value;
|
||||||
|
Loading…
Reference in New Issue
Block a user