5 TextValue(
const TextValue&);
6 TextValue(
const TQCString&);
7 TextValue & operator = (TextValue&);
8 TextValue & operator = (
const TQCString&);
9 bool operator ==(TextValue&);
10 bool operator !=(TextValue& x) {
return !(*
this==x);}
11 bool operator ==(
const TQCString& s) {TextValue a(s);
return(*
this==a);}
12 bool operator != (
const TQCString& s) {
return !(*
this == s);}
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 "TextValue"; }