27 #include <tqcstring.h>
29 #include <VCardParam.h>
34 class KVCARD_EXPORT TextParam :
public Param
38 TextParam(
const TextParam&);
39 TextParam(
const TQCString&);
40 TextParam & operator = (TextParam&);
41 TextParam & operator = (
const TQCString&);
42 bool operator ==(TextParam&);
43 bool operator !=(TextParam& x) {
return !(*
this==x);}
44 bool operator ==(
const TQCString& s) {TextParam a(s);
return(*
this==a);}
45 bool operator != (
const TQCString& s) {
return !(*
this == s);}
48 void parse() {
if(!parsed_) _parse();parsed_=
true;assembled_=
false;}
50 void assemble() {
if(assembled_)
return;parse();_assemble();assembled_=
true;}
54 const char * className()
const {
return "TextParam"; }