You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
753 B
24 lines
753 B
15 years ago
|
// XXX Automatically generated. DO NOT EDIT! XXX //
|
||
|
|
||
|
public:
|
||
|
AgentValue();
|
||
|
AgentValue(const AgentValue&);
|
||
14 years ago
|
AgentValue(const TQCString&);
|
||
15 years ago
|
AgentValue & operator = (AgentValue&);
|
||
14 years ago
|
AgentValue & operator = (const TQCString&);
|
||
15 years ago
|
bool operator ==(AgentValue&);
|
||
|
bool operator !=(AgentValue& x) {return !(*this==x);}
|
||
14 years ago
|
bool operator ==(const TQCString& s) {AgentValue a(s);return(*this==a);}
|
||
|
bool operator != (const TQCString& s) {return !(*this == s);}
|
||
15 years ago
|
|
||
|
virtual ~AgentValue();
|
||
|
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 "AgentValue"; }
|
||
|
|
||
|
// End of automatically generated code //
|