summaryrefslogtreecommitdiffstats
path: root/tdeabc/vcard/include/VCardTextListValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeabc/vcard/include/VCardTextListValue.h')
-rw-r--r--tdeabc/vcard/include/VCardTextListValue.h27
1 files changed, 22 insertions, 5 deletions
diff --git a/tdeabc/vcard/include/VCardTextListValue.h b/tdeabc/vcard/include/VCardTextListValue.h
index 53760c75a..4c3cfafe6 100644
--- a/tdeabc/vcard/include/VCardTextListValue.h
+++ b/tdeabc/vcard/include/VCardTextListValue.h
@@ -35,12 +35,29 @@ namespace VCARD
class KVCARD_EXPORT TextListValue : public Value
{
+ public:
+ TextListValue();
+ TextListValue(const TextListValue&);
+ TextListValue(const TQCString&);
+ TextListValue & operator = (TextListValue&);
+ TextListValue & operator = (const TQCString&);
+ bool operator ==(TextListValue&);
+ bool operator !=(TextListValue& x) {return !(*this==x);}
+ bool operator ==(const TQCString& s) {TextListValue a(s);return(*this==a);}
+ bool operator != (const TQCString& s) {return !(*this == s);}
+
+ virtual ~TextListValue();
+ 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 "TextListValue"; }
-#include "TextListValue-generated.h"
-
- unsigned int numValues();
- TQCString value(unsigned int);
-
+ unsigned int numValues();
+ TQCString value(unsigned int);
+
private:
TQStrList valueList_;