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