summaryrefslogtreecommitdiffstats
path: root/tdeabc/vcard/include/VCardPhoneNumberValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeabc/vcard/include/VCardPhoneNumberValue.h')
-rw-r--r--tdeabc/vcard/include/VCardPhoneNumberValue.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/tdeabc/vcard/include/VCardPhoneNumberValue.h b/tdeabc/vcard/include/VCardPhoneNumberValue.h
index 3f9e106ca..3a44da2d2 100644
--- a/tdeabc/vcard/include/VCardPhoneNumberValue.h
+++ b/tdeabc/vcard/include/VCardPhoneNumberValue.h
@@ -31,7 +31,25 @@ namespace VCARD
class KVCARD_EXPORT PhoneNumberValue : public Value
{
-#include "PhoneNumberValue-generated.h"
+ public:
+ PhoneNumberValue();
+ PhoneNumberValue(const PhoneNumberValue&);
+ PhoneNumberValue(const TQCString&);
+ PhoneNumberValue & operator = (PhoneNumberValue&);
+ PhoneNumberValue & operator = (const TQCString&);
+ bool operator ==(PhoneNumberValue&);
+ bool operator !=(PhoneNumberValue& x) {return !(*this==x);}
+ bool operator ==(const TQCString& s) {PhoneNumberValue a(s);return(*this==a);}
+ bool operator != (const TQCString& s) {return !(*this == s);}
+
+ virtual ~PhoneNumberValue();
+ void parse() {if(!parsed_) _parse();parsed_=true;assembled_=false;}
+
+ void assemble() {if(assembled_) return;parse();_assemble();assembled_=true;}
+
+ void _parse();
+ void _assemble();
+ const char * className() const { return "PhoneNumberValue"; }
};
}