27 #include <tqcstring.h>
28 #include <tqstrlist.h>
30 #include <VCardValue.h>
35 class KVCARD_EXPORT OrgValue :
public Value
39 OrgValue(
const OrgValue&);
40 OrgValue(
const TQCString&);
41 OrgValue & operator = (OrgValue&);
42 OrgValue & operator = (
const TQCString&);
43 bool operator ==(OrgValue&);
44 bool operator !=(OrgValue& x) {
return !(*
this==x);}
45 bool operator ==(
const TQCString& s) {OrgValue a(s);
return(*
this==a);}
46 bool operator != (
const TQCString& s) {
return !(*
this == s);}
49 void parse() {
if(!parsed_) _parse();parsed_=
true;assembled_=
false;}
51 void assemble() {
if(assembled_)
return;parse();_assemble();assembled_=
true;}
55 const char * className()
const {
return "OrgValue"; }
57 unsigned int numValues();
58 TQCString value(
unsigned int);