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