5 TextBinParam(
const TextBinParam&);
6 TextBinParam(
const TQCString&);
7 TextBinParam & operator = (TextBinParam&);
8 TextBinParam & operator = (
const TQCString&);
9 bool operator ==(TextBinParam&);
10 bool operator !=(TextBinParam& x) {
return !(*
this==x);}
11 bool operator ==(
const TQCString& s) {TextBinParam a(s);
return(*
this==a);}
12 bool operator != (
const TQCString& s) {
return !(*
this == s);}
14 virtual ~TextBinParam();
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 "TextBinParam"; }