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