27 #include <tqcstring.h>
29 #include <VCardValue.h>
34 class KVCARD_EXPORT TelValue :
public Value
38 TelValue(
const TelValue&);
39 TelValue(
const TQCString&);
40 TelValue & operator = (TelValue&);
41 TelValue & operator = (
const TQCString&);
42 bool operator ==(TelValue&);
43 bool operator !=(TelValue& x) {
return !(*
this==x);}
44 bool operator ==(
const TQCString& s) {TelValue 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 "TelValue"; }