5 V_ParamValue(
const V_ParamValue&);
6 V_ParamValue(
const TQCString&);
7 V_ParamValue & operator = (V_ParamValue&);
8 V_ParamValue & operator = (
const TQCString&);
9 bool operator ==(V_ParamValue&);
10 bool operator !=(V_ParamValue& x) {
return !(*
this==x);}
11 bool operator ==(
const TQCString& s) {V_ParamValue a(s);
return(*
this==a);}
12 bool operator != (
const TQCString& s) {
return !(*
this == s);}
14 virtual ~V_ParamValue();
15 void parse() {
if(!parsed_) _parse();parsed_=
true;assembled_=
false;}
17 void assemble() {
if(assembled_)
return;parse();_assemble();assembled_=
true;}