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