summaryrefslogtreecommitdiffstats
path: root/tdeabc/vcard/include/VCardTelValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeabc/vcard/include/VCardTelValue.h')
-rw-r--r--tdeabc/vcard/include/VCardTelValue.h23
1 files changed, 19 insertions, 4 deletions
diff --git a/tdeabc/vcard/include/VCardTelValue.h b/tdeabc/vcard/include/VCardTelValue.h
index 043a45aa9..e02504112 100644
--- a/tdeabc/vcard/include/VCardTelValue.h
+++ b/tdeabc/vcard/include/VCardTelValue.h
@@ -33,10 +33,25 @@ namespace VCARD
class KVCARD_EXPORT TelValue : public Value
{
-
-#include "TelValue-generated.h"
-
- private:
+ public:
+ TelValue();
+ TelValue(const TelValue&);
+ TelValue(const TQCString&);
+ TelValue & operator = (TelValue&);
+ TelValue & operator = (const TQCString&);
+ bool operator ==(TelValue&);
+ bool operator !=(TelValue& x) {return !(*this==x);}
+ bool operator ==(const TQCString& s) {TelValue a(s);return(*this==a);}
+ bool operator != (const TQCString& s) {return !(*this == s);}
+
+ virtual ~TelValue();
+ 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 "TelValue"; }
};
}