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