diff options
Diffstat (limited to 'tdeabc/vcard/include/VCardTextBinValue.h')
-rw-r--r-- | tdeabc/vcard/include/VCardTextBinValue.h | 61 |
1 files changed, 39 insertions, 22 deletions
diff --git a/tdeabc/vcard/include/VCardTextBinValue.h b/tdeabc/vcard/include/VCardTextBinValue.h index 316fa7832..d90d1e9d5 100644 --- a/tdeabc/vcard/include/VCardTextBinValue.h +++ b/tdeabc/vcard/include/VCardTextBinValue.h @@ -33,28 +33,45 @@ namespace VCARD class KVCARD_EXPORT TextBinValue : public Value { - -#include "TextBinValue-generated.h" - - TextBinValue *clone(); - - bool isBinary() { parse(); return mIsBinary_; } - TQByteArray data() { parse(); return mData_; } - TQString url() { parse(); return mUrl_; } - - void setData( const TQByteArray &data ) - { - mData_ = data; - mIsBinary_ = true; - assembled_ = false; - } - - void setUrl( const TQString &url ) - { - mUrl_ = url; - mIsBinary_ = false; - assembled_ = false; - } + public: + TextBinValue(); + TextBinValue(const TextBinValue&); + TextBinValue(const TQCString&); + TextBinValue & operator = (TextBinValue&); + TextBinValue & operator = (const TQCString&); + bool operator ==(TextBinValue&); + bool operator !=(TextBinValue& x) {return !(*this==x);} + bool operator ==(const TQCString& s) {TextBinValue a(s);return(*this==a);} + bool operator != (const TQCString& s) {return !(*this == s);} + + virtual ~TextBinValue(); + 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 "TextBinValue"; } + + TextBinValue *clone(); + + bool isBinary() { parse(); return mIsBinary_; } + TQByteArray data() { parse(); return mData_; } + TQString url() { parse(); return mUrl_; } + + void setData( const TQByteArray &data ) + { + mData_ = data; + mIsBinary_ = true; + assembled_ = false; + } + + void setUrl( const TQString &url ) + { + mUrl_ = url; + mIsBinary_ = false; + assembled_ = false; + } private: int mIsBinary_; |