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