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