Main Page | Class Hierarchy | Alphabetical List | Data Structures | File List | Data Fields | Globals

MCFTPquote Class Reference

#include <MCFTPquote.h>

Collaboration diagram for MCFTPquote:

Collaboration graph
[legend]

Public Member Functions

int array_dim ()
MCFTPquotecopy (const MCFTPrequest &rhs)
MCFTPquotecopy (const MCFTPquote &rhs)
MRAcspeccspec ()
int grid_dim ()
bool is_equal (const MCFTPrequest &rhs)
bool is_equal (const MCFTPquote &rhs)
 MCFTPquote (const MCFTPquote &rhs)
 MCFTPquote (const MCFTPrequest &rhs)
 MCFTPquote (int grid_dim, int array_dim=0)
 MCFTPquote ()
MRAmspecmspec ()
string name ()
bool operator!= (const MCFTPrequest &rhs)
bool operator!= (const MCFTPquote &rhs)
MCFTPquoteoperator() (const MCFTPquote &)
MCFTPquoteoperator() (const MCFTPrequest &)
MCFTPquoteoperator() (int grid_dim, int array_dim=0)
MCFTPquoteoperator() ()
MCFTPquote operator+ (const MCFTPrequest &rhs)
MCFTPquote operator+ (const MCFTPquote &rhs)
MCFTPquoteoperator+= (const MCFTPrequest &rhs)
MCFTPquoteoperator+= (const MCFTPquote &rhs)
MCFTPquote operator- (const MCFTPrequest &rhs)
MCFTPquote operator- (const MCFTPquote &rhs)
MCFTPquoteoperator-= (const MCFTPrequest &rhs)
MCFTPquoteoperator-= (const MCFTPquote &rhs)
MCFTPquoteoperator<< (istream &)
MCFTPquoteoperator<< (BufferBase &)
MCFTPquoteoperator= (const MCFTPrequest &rhs)
MCFTPquoteoperator= (const MCFTPquote &rhs)
bool operator== (const MCFTPrequest &rhs)
bool operator== (const MCFTPquote &rhs)
MCFTPquoteoperator>> (ostream &)
MCFTPquoteoperator>> (BufferBase &)
void read (ostream &)
void read (BufferBase &)
void report (ostream &=cout)
MRAsbnsbn ()
void set_cspec (const MRAcrange &cthis, const MRAcrange &cexist, const MRAcrange &ctheory)
void set_cspec (const MRAcspec &)
void set_cspec ()
void set_mspec (const MRAmrange &mthis, const MRAmrange &mexist, const MRAmrange &mtheory)
void set_mspec (const MRAmspec &)
void set_mspec ()
void set_name (string)
void set_sbn (const MRAsbn &)
void set_sbn ()
int sizeb ()
void write (istream &)
void write (BufferBase &)

Protected Attributes

int _array_dim
MRAcspec _cspec
int _grid_dim
MRAmspec _mspec
string _name
MRAsbn _sbn

Friends

class MCFTPrequest
ostream & operator<< (ostream &, MCFTPquote &)
BufferBaseoperator<< (BufferBase &, MCFTPquote &)
istream & operator>> (istream &, MCFTPquote &)
BufferBaseoperator>> (BufferBase &, MCFTPquote &)

Constructor & Destructor Documentation

MCFTPquote::MCFTPquote  ) 
 

Definition at line 134 of file MCFTPquote.h.

00134 : _grid_dim(0), _array_dim(0), _name("") {}

MCFTPquote::MCFTPquote int  grid_dim,
int  array_dim = 0
 

Definition at line 23 of file MCFTPquote.cpp.

References _grid_dim, _mspec, and _sbn.

00024   : _grid_dim(grid_dim), _array_dim(array_dim),
00025     _name("")
00026 {
00027    _sbn(_grid_dim);
00028    _mspec(_grid_dim);
00029 }

MCFTPquote::MCFTPquote const MCFTPrequest rhs  ) 
 

Definition at line 41 of file MCFTPquote.cpp.

References MCFTPrequest._array_dim, _array_dim, MCFTPrequest._cspec, _cspec, MCFTPrequest._grid_dim, _grid_dim, MCFTPrequest._mspec, _mspec, MCFTPrequest._name, _name, and MCFTPrequest._sbn.

00042 {
00043    _grid_dim = request._grid_dim;
00044    _array_dim = request._array_dim;
00045    _name = request._name;
00046    _sbn = request._sbn;
00047    _mspec = request._mspec;
00048    _cspec = request._cspec;
00049 }

MCFTPquote::MCFTPquote const MCFTPquote rhs  ) 
 

Definition at line 31 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, and _sbn.

00032 {
00033    _grid_dim = quote._grid_dim;
00034    _array_dim = quote._array_dim;
00035    _name = quote._name;
00036    _sbn = quote._sbn;
00037    _mspec = quote._mspec;
00038    _cspec = quote._cspec;
00039 }


Member Function Documentation

int MCFTPquote::array_dim  ) 
 

Definition at line 325 of file MCFTPquote.h.

References _array_dim.

00325 { return _array_dim; }

MCFTPquote & MCFTPquote::copy const MCFTPrequest rhs  ) 
 

Definition at line 105 of file MCFTPquote.cpp.

References MCFTPrequest._array_dim, _array_dim, MCFTPrequest._cspec, _cspec, MCFTPrequest._grid_dim, _grid_dim, MCFTPrequest._mspec, _mspec, MCFTPrequest._name, _name, MCFTPrequest._sbn, and _sbn.

00106 {
00107    _grid_dim = rhs._grid_dim;
00108    _array_dim = rhs._array_dim;
00109    _name = rhs._name;
00110    _sbn(_grid_dim) = rhs._sbn;
00111    _mspec(_grid_dim) = rhs._mspec;
00112    _cspec = rhs._cspec;
00113    return *this;
00114 }

MCFTPquote & MCFTPquote::copy const MCFTPquote rhs  ) 
 

Definition at line 92 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, and _sbn.

Referenced by operator=().

00093 {
00094    if ( this != &quote ) {
00095       _grid_dim = quote._grid_dim;
00096       _array_dim = quote._array_dim;
00097       _name = quote._name;
00098       _sbn( _grid_dim ) = quote._sbn;
00099       _mspec(_grid_dim) = quote._mspec;
00100       _cspec = quote._cspec;
00101    }
00102    return *this;
00103 }

MRAcspec & MCFTPquote::cspec  ) 
 

Definition at line 337 of file MCFTPquote.h.

References _cspec.

00337 { return _cspec; }

int MCFTPquote::grid_dim  ) 
 

Definition at line 322 of file MCFTPquote.h.

References _grid_dim.

00322 { return _grid_dim; }

bool MCFTPquote::is_equal const MCFTPrequest rhs  ) 
 

Definition at line 129 of file MCFTPquote.cpp.

References MCFTPrequest._array_dim, _array_dim, MCFTPrequest._cspec, _cspec, MCFTPrequest._grid_dim, _grid_dim, MCFTPrequest._mspec, _mspec, MCFTPrequest._name, _name, and MCFTPrequest._sbn.

00130 {
00131    if ( _grid_dim != request._grid_dim ) return false;
00132    if ( _array_dim != request._array_dim ) return false;
00133    if ( _name != request._name ) return false;
00134    if ( _sbn != request._sbn ) return false;
00135    if ( _mspec != request._mspec ) return false;
00136    if ( _cspec != request._cspec ) return false;
00137    return true;
00138 }

bool MCFTPquote::is_equal const MCFTPquote rhs  ) 
 

Definition at line 116 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, and _sbn.

Referenced by operator!=(), and operator==().

00117 {
00118    if ( this != &quote ) {
00119       if ( _grid_dim != quote._grid_dim ) return false;
00120       if ( _array_dim != quote._array_dim ) return false;
00121       if ( _name != quote._name ) return false;
00122       if ( _sbn != quote._sbn ) return false;
00123       if ( _mspec != quote._mspec ) return false;
00124       if ( _cspec != quote._cspec ) return false;
00125    }
00126    return true;
00127 }

MRAmspec & MCFTPquote::mspec  ) 
 

Definition at line 334 of file MCFTPquote.h.

References _mspec.

00334 { return _mspec; }

string MCFTPquote::name  ) 
 

Definition at line 328 of file MCFTPquote.h.

References _name.

00328 { return _name; }

bool MCFTPquote::operator!= const MCFTPrequest rhs  ) 
 

Definition at line 167 of file MCFTPquote.h.

References is_equal().

00168 { 
00169    return !is_equal(rhs);
00170 }

bool MCFTPquote::operator!= const MCFTPquote rhs  ) 
 

Definition at line 161 of file MCFTPquote.h.

References is_equal().

00162 { 
00163    return !is_equal(rhs);
00164 }

MCFTPquote & MCFTPquote::operator() const MCFTPquote  ) 
 

Definition at line 82 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, and _sbn.

00083 {
00084    _grid_dim = quote._grid_dim;
00085    _array_dim = quote._array_dim;
00086    _sbn( _grid_dim ) = quote._sbn;
00087    _mspec(_grid_dim) = quote._mspec;
00088    _cspec = quote._cspec;
00089    return *this;
00090 }

MCFTPquote & MCFTPquote::operator() const MCFTPrequest  ) 
 

Definition at line 71 of file MCFTPquote.cpp.

References MCFTPrequest._array_dim, _array_dim, MCFTPrequest._cspec, _cspec, MCFTPrequest._grid_dim, _grid_dim, MCFTPrequest._mspec, _mspec, MCFTPrequest._name, _name, MCFTPrequest._sbn, and _sbn.

00072 {
00073    _grid_dim = request._grid_dim;
00074    _array_dim = request._array_dim;
00075    _name = request._name;
00076    _sbn(_grid_dim) = request._sbn;
00077    _mspec(_grid_dim) = request._mspec;
00078    _cspec = request._cspec;
00079    return *this;
00080 }

MCFTPquote & MCFTPquote::operator() int  grid_dim,
int  array_dim = 0
 

Definition at line 61 of file MCFTPquote.cpp.

References _array_dim, _grid_dim, _mspec, _name, and _sbn.

00062 {
00063    _grid_dim = grid_dim;
00064    _array_dim = array_dim;
00065    _name = "";
00066    _sbn(_grid_dim) = 0;
00067    _mspec(_grid_dim);
00068    return *this;
00069 }

MCFTPquote & MCFTPquote::operator()  ) 
 

Definition at line 51 of file MCFTPquote.cpp.

References _array_dim, _grid_dim, _mspec, _name, and _sbn.

00052 {
00053    _grid_dim = 0;
00054    _array_dim = 0;
00055    _name = "";
00056    _sbn(0);
00057    _mspec(0);
00058    return *this;
00059 }

MCFTPquote MCFTPquote::operator+ const MCFTPrequest rhs  ) 
 

Definition at line 181 of file MCFTPquote.h.

References MCFTPrequest._mspec, _mspec, and MRAmspec.mthis.

00182 { 
00183    MCFTPquote quote(*this);
00184    quote._mspec.mthis += rhs._mspec.mthis;
00185    return quote;
00186 }

MCFTPquote MCFTPquote::operator+ const MCFTPquote rhs  ) 
 

Definition at line 173 of file MCFTPquote.h.

References _mspec, and MRAmspec.mthis.

00174 { 
00175    MCFTPquote quote(*this);
00176    quote._mspec.mthis += rhs._mspec.mthis;
00177    return quote;
00178 }

MCFTPquote & MCFTPquote::operator+= const MCFTPrequest rhs  ) 
 

Definition at line 196 of file MCFTPquote.h.

References MCFTPrequest._mspec, _mspec, and MRAmspec.mthis.

00197 { 
00198    _mspec.mthis += rhs._mspec.mthis; 
00199    return *this;
00200 }

MCFTPquote & MCFTPquote::operator+= const MCFTPquote rhs  ) 
 

Definition at line 189 of file MCFTPquote.h.

References _mspec, and MRAmspec.mthis.

00190 {
00191    _mspec.mthis += rhs._mspec.mthis; 
00192    return *this;
00193 }

MCFTPquote MCFTPquote::operator- const MCFTPrequest rhs  ) 
 

Definition at line 211 of file MCFTPquote.h.

References MCFTPrequest._mspec, _mspec, and MRAmspec.mthis.

00212 { 
00213    MCFTPquote quote(*this);
00214    quote._mspec.mthis -= rhs._mspec.mthis;
00215    return quote;
00216 }

MCFTPquote MCFTPquote::operator- const MCFTPquote rhs  ) 
 

Definition at line 203 of file MCFTPquote.h.

References _mspec, and MRAmspec.mthis.

00204 { 
00205    MCFTPquote quote(*this);
00206    quote._mspec.mthis -= rhs._mspec.mthis;
00207    return quote;
00208 }

MCFTPquote & MCFTPquote::operator-= const MCFTPrequest rhs  ) 
 

Definition at line 226 of file MCFTPquote.h.

References MCFTPrequest._mspec, _mspec, and MRAmspec.mthis.

00227 { 
00228    _mspec.mthis -= rhs._mspec.mthis; 
00229    return *this;
00230 }

MCFTPquote & MCFTPquote::operator-= const MCFTPquote rhs  ) 
 

Definition at line 219 of file MCFTPquote.h.

References _mspec, and MRAmspec.mthis.

00220 { 
00221    _mspec.mthis -= rhs._mspec.mthis; 
00222    return *this;
00223 }

MCFTPquote & MCFTPquote::operator<< istream &   ) 
 

Definition at line 247 of file MCFTPquote.h.

References write().

00248 {
00249    write(is);
00250    return *this;
00251 }

MCFTPquote & MCFTPquote::operator<< BufferBase  ) 
 

Definition at line 233 of file MCFTPquote.h.

References write().

00234 {
00235    write(buffer);
00236    return *this;
00237 }

MCFTPquote & MCFTPquote::operator= const MCFTPrequest rhs  ) 
 

Definition at line 143 of file MCFTPquote.h.

References copy().

00144 { 
00145    return copy(rhs);
00146 }

MCFTPquote & MCFTPquote::operator= const MCFTPquote rhs  ) 
 

Definition at line 137 of file MCFTPquote.h.

References copy().

00138 { 
00139    return copy(rhs);
00140 }

bool MCFTPquote::operator== const MCFTPrequest rhs  ) 
 

Definition at line 155 of file MCFTPquote.h.

References is_equal().

00156 { 
00157    return is_equal(rhs);
00158 }

bool MCFTPquote::operator== const MCFTPquote rhs  ) 
 

Definition at line 149 of file MCFTPquote.h.

References is_equal().

00150 { 
00151    return is_equal(rhs);
00152 }

MCFTPquote & MCFTPquote::operator>> ostream &   ) 
 

Definition at line 254 of file MCFTPquote.h.

References read().

00255 {
00256    read(os);
00257    return *this;
00258 }

MCFTPquote & MCFTPquote::operator>> BufferBase  ) 
 

Definition at line 240 of file MCFTPquote.h.

References read().

00241 {
00242    read(buffer);
00243    return *this;
00244 }

void MCFTPquote::read ostream &   ) 
 

Definition at line 182 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, and _name.

00184 {
00185    bytepack bp;
00186    os << bp( _grid_dim, 1 );
00187    os << bp( _array_dim, 1 );
00188    os << bp( int(_name.size()), 1 );
00189    for(unsigned int i = 0; i < _name.size(); ++i ) os.put( _name[i] );
00190    os << _sbn;
00191    os << _mspec;
00192    os << _cspec;
00193 }

void MCFTPquote::read BufferBase  ) 
 

Definition at line 155 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, and BufferBase.put().

Referenced by operator<<(), and operator>>().

00156 {
00157    bytepack bp;
00158    buffer << bp( _grid_dim, 1 );
00159    buffer << bp( _array_dim, 1 );
00160    buffer << bp( int(_name.size()), 1 );
00161    for(unsigned int i = 0; i < _name.size(); ++i ) buffer.put( _name[i] );
00162    buffer << _sbn;
00163    buffer << _mspec;
00164    buffer << _cspec;
00165 }

void MCFTPquote::report ostream &  = cout  ) 
 

Definition at line 200 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, MRAcspec.report(), MRAmspec.report(), and MRAsbn.report().

00201 {
00202    os << "MCFTPquote::report(){\n";
00203    os << "grid_dim = " << _grid_dim << '\n';
00204    os << "array_dim = " << _array_dim << '\n';
00205    os << "name.size() = " << _name.size() << '\n';
00206    os << "name = " << _name << '\n';
00207    os << "sbn =\n";
00208    _sbn.report(os);
00209    os << "mspec =\n";
00210    _mspec.report(os);
00211    os << "cspec =\n";
00212    _cspec.report(os);
00213    os << "}\n";
00214 }

MRAsbn & MCFTPquote::sbn  ) 
 

Definition at line 331 of file MCFTPquote.h.

00331 { return _sbn; }

void MCFTPquote::set_cspec const MRAcrange cthis,
const MRAcrange cexist,
const MRAcrange ctheory
 

Definition at line 312 of file MCFTPquote.h.

References _cspec, MRAcspec.cexist, MRAcspec.ctheory, and MRAcspec.cthis.

00315 { 
00316    _cspec.cthis = cthis; 
00317    _cspec.cexist = cexist; 
00318    _cspec.ctheory = ctheory; 
00319 }

void MCFTPquote::set_cspec const MRAcspec  ) 
 

Definition at line 309 of file MCFTPquote.h.

References _cspec.

00309 { _cspec = cspec; }

void MCFTPquote::set_cspec  ) 
 

Definition at line 296 of file MCFTPquote.h.

References _cspec, MRAcspec.cexist, MRAcrange.cmax, MRAcrange.cmin, MRAcspec.ctheory, and MRAcspec.cthis.

void MCFTPquote::set_mspec const MRAmrange mthis,
const MRAmrange mexist,
const MRAmrange mtheory
 

Definition at line 286 of file MCFTPquote.h.

References _mspec, MRAmspec.mexist, MRAmspec.mtheory, and MRAmspec.mthis.

00289 { 
00290    _mspec.mthis = mthis; 
00291    _mspec.mexist = mexist; 
00292    _mspec.mtheory = mtheory; 
00293 }

void MCFTPquote::set_mspec const MRAmspec  ) 
 

Definition at line 283 of file MCFTPquote.h.

References _mspec.

00283 { _mspec = mspec; }

void MCFTPquote::set_mspec  ) 
 

Definition at line 270 of file MCFTPquote.h.

References _mspec, MRAmspec.mexist, MRAmrange.mmax, MRAmrange.mmin, MRAmspec.mtheory, and MRAmspec.mthis.

void MCFTPquote::set_name string   ) 
 

Definition at line 261 of file MCFTPquote.h.

References _name.

00261 { _name = name; }

void MCFTPquote::set_sbn const MRAsbn  ) 
 

Definition at line 267 of file MCFTPquote.h.

00267 { _sbn = sbn; }

void MCFTPquote::set_sbn  ) 
 

Definition at line 264 of file MCFTPquote.h.

00264 { _sbn = 0; }

int MCFTPquote::sizeb  ) 
 

Definition at line 195 of file MCFTPquote.cpp.

References _cspec, _mspec, _name, MRAcspec.sizeb(), MRAmspec.sizeb(), and MRAsbn.sizeb().

Referenced by MCFTPmssg.mcftpsizeb().

00196 { 
00197    return 3 + _name.size() + _sbn.sizeb() + _mspec.sizeb() + _cspec.sizeb();
00198 }

void MCFTPquote::write istream &   ) 
 

Definition at line 167 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, and _sbn.

00168 {
00169    bytepack bp;
00170    is >> bp( 0, 1 ); _grid_dim = int(bp);
00171    is >> bp( 0, 1 ); _array_dim = int(bp);
00172    is >> bp( 0, 1 ); int namesize = int(bp);
00173    _name = "";
00174    for( int i = 0; i < namesize; ++i ) _name += is.get();
00175    _sbn(_grid_dim);
00176    is >> _sbn;
00177    _mspec(_grid_dim);
00178    is >> _mspec;
00179    is >> _cspec;
00180 }

void MCFTPquote::write BufferBase  ) 
 

Definition at line 140 of file MCFTPquote.cpp.

References _array_dim, _cspec, _grid_dim, _mspec, _name, _sbn, and BufferBase.get().

Referenced by operator<<(), and operator>>().

00141 {
00142    bytepack bp;
00143    buffer >> bp( 0, 1 ); _grid_dim = int(bp);
00144    buffer >> bp( 0, 1 ); _array_dim = int(bp);
00145    buffer >> bp( 0, 1 ); int namesize = int(bp);
00146    _name = "";
00147    for( int i = 0; i < namesize; ++i ) _name += buffer.get();
00148    _sbn(_grid_dim);
00149    buffer >> _sbn;
00150    _mspec(_grid_dim);
00151    buffer >> _mspec;
00152    buffer >> _cspec;
00153 }


Friends And Related Function Documentation

friend class MCFTPrequest [friend]
 

Definition at line 121 of file MCFTPquote.h.

ostream& operator<< ostream &  os,
MCFTPquote quote
[friend]
 

Definition at line 229 of file MCFTPquote.cpp.

00230 {
00231    quote.read(os);
00232    return os;
00233 }

BufferBase& operator<< BufferBase buffer,
MCFTPquote quote
[friend]
 

Definition at line 217 of file MCFTPquote.cpp.

00218 {
00219    quote.read(buffer);
00220    return buffer;
00221 }

istream& operator>> istream &  is,
MCFTPquote quote
[friend]
 

Definition at line 235 of file MCFTPquote.cpp.

00236 {
00237    quote.write(is);
00238    return is;
00239 }

BufferBase& operator>> BufferBase buffer,
MCFTPquote quote
[friend]
 

Definition at line 223 of file MCFTPquote.cpp.

00224 {
00225    quote.write(buffer);
00226    return buffer;
00227 }


Field Documentation

int MCFTPquote._array_dim [protected]
 

Definition at line 113 of file MCFTPquote.h.

Referenced by array_dim(), MCFTPrequest.copy(), copy(), MCFTPrequest.is_equal(), is_equal(), MCFTPquote(), MCFTPrequest.MCFTPrequest(), MCFTPrequest.operator()(), operator()(), read(), report(), and write().

MRAcspec MCFTPquote._cspec [protected]
 

Definition at line 119 of file MCFTPquote.h.

Referenced by MCFTPrequest.copy(), copy(), cspec(), MCFTPrequest.is_equal(), is_equal(), MCFTPquote(), MCFTPrequest.MCFTPrequest(), MCFTPrequest.operator()(), operator()(), read(), report(), set_cspec(), sizeb(), and write().

int MCFTPquote._grid_dim [protected]
 

Definition at line 112 of file MCFTPquote.h.

Referenced by MCFTPrequest.copy(), copy(), grid_dim(), MCFTPrequest.is_equal(), is_equal(), MCFTPquote(), MCFTPrequest.MCFTPrequest(), MCFTPrequest.operator()(), operator()(), read(), report(), and write().

MRAmspec MCFTPquote._mspec [protected]
 

Definition at line 118 of file MCFTPquote.h.

Referenced by MCFTPrequest.copy(), copy(), MCFTPrequest.is_equal(), is_equal(), MCFTPquote(), MCFTPrequest.MCFTPrequest(), mspec(), MCFTPrequest.operator()(), operator()(), MCFTPrequest.operator+(), operator+(), MCFTPrequest.operator+=(), operator+=(), MCFTPrequest.operator-(), operator-(), MCFTPrequest.operator-=(), operator-=(), read(), report(), set_mspec(), sizeb(), and write().

string MCFTPquote._name [protected]
 

Definition at line 115 of file MCFTPquote.h.

Referenced by MCFTPrequest.copy(), copy(), MCFTPrequest.is_equal(), is_equal(), MCFTPquote(), MCFTPrequest.MCFTPrequest(), name(), MCFTPrequest.operator()(), operator()(), read(), report(), set_name(), sizeb(), and write().

MRAsbn MCFTPquote._sbn [protected]
 

Definition at line 117 of file MCFTPquote.h.

Referenced by MCFTPrequest.copy(), copy(), MCFTPrequest.is_equal(), is_equal(), MCFTPquote(), MCFTPrequest.MCFTPrequest(), MCFTPrequest.operator()(), operator()(), and write().


The documentation for this class was generated from the following files:
Generated on Mon May 31 21:41:21 2004 for SR2k4 Assembler by doxygen 1.3.6