27 #include <VCardValue.h>
32 class KVCARD_EXPORT ImgValue :
public Value
36 ImgValue(
const ImgValue&);
37 ImgValue(
const TQCString&);
38 ImgValue & operator = (ImgValue&);
39 ImgValue & operator = (
const TQCString&);
40 bool operator ==(ImgValue&);
41 bool operator !=(ImgValue& x) {
return !(*
this==x);}
42 bool operator ==(
const TQCString& s) {ImgValue a(s);
return(*
this==a);}
43 bool operator != (
const TQCString& s) {
return !(*
this == s);}
46 void parse() {
if(!parsed_) _parse();parsed_=
true;assembled_=
false;}
48 void assemble() {
if(assembled_)
return;parse();_assemble();assembled_=
true;}
52 virtual const char * className()
const {
return "ImgValue"; }