27 #include <tqcstring.h>
29 #include <VCardValue.h>
34 class KVCARD_EXPORT AgentValue :
public Value
38 AgentValue(
const AgentValue&);
39 AgentValue(
const TQCString&);
40 AgentValue & operator = (AgentValue&);
41 AgentValue & operator = (
const TQCString&);
42 bool operator ==(AgentValue&);
43 bool operator !=(AgentValue& x) {
return !(*
this==x);}
44 bool operator ==(
const TQCString& s) {AgentValue a(s);
return(*
this==a);}
45 bool operator != (
const TQCString& s) {
return !(*
this == s);}
47 virtual ~AgentValue();
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 "AgentValue"; }