27 #include <tqcstring.h>
29 #include <VCardValue.h>
34 class KVCARD_EXPORT SoundValue :
public Value
38 SoundValue(
const SoundValue&);
39 SoundValue(
const TQCString&);
40 SoundValue & operator = (SoundValue&);
41 SoundValue & operator = (
const TQCString&);
42 bool operator ==(SoundValue&);
43 bool operator !=(SoundValue& x) {
return !(*
this==x);}
44 bool operator ==(
const TQCString& s) {SoundValue a(s);
return(*
this==a);}
45 bool operator != (
const TQCString& s) {
return !(*
this == s);}
47 virtual ~SoundValue();
48 void parse() {
if(!parsed_) _parse();parsed_=
true;assembled_=
false;}
50 void assemble() {
if(assembled_)
return;parse();_assemble();assembled_=
true;}
54 const char * className()
const {
return "SoundValue"; }