5 AgentValue(
const AgentValue&);
6 AgentValue(
const TQCString&);
7 AgentValue & operator = (AgentValue&);
8 AgentValue & operator = (
const TQCString&);
9 bool operator ==(AgentValue&);
10 bool operator !=(AgentValue& x) {
return !(*
this==x);}
11 bool operator ==(
const TQCString& s) {AgentValue a(s);
return(*
this==a);}
12 bool operator != (
const TQCString& s) {
return !(*
this == s);}
14 virtual ~AgentValue();
15 void parse() {
if(!parsed_) _parse();parsed_=
true;assembled_=
false;}
17 void assemble() {
if(assembled_)
return;parse();_assemble();assembled_=
true;}
21 const char * className()
const {
return "AgentValue"; }