#include <MRAsbn.h>
Collaboration diagram for MRAsbn:

Public Member Functions | |
| MRAsbn & | copy (int sbn) |
| MRAsbn & | copy (const MRAsbn &) |
| int | dim () |
| bool | is_equal (const MRAsbn &rhs) |
| MRAsbn (int dim=0) | |
| MRAsbn (const MRAsbn &) | |
| bool | operator!= (const MRAsbn &rhs) |
| MRAsbn & | operator() (int dim=0) |
| MRAsbn & | operator() (const MRAsbn &) |
| MRAsbn & | operator<< (BufferBase &) |
| MRAsbn & | operator= (int sbn) |
| MRAsbn & | operator= (const MRAsbn &) |
| bool | operator== (const MRAsbn &rhs) |
| MRAsbn & | operator>> (BufferBase &) |
| int & | operator[] (int d) |
| void | read (ostream &) |
| void | read (BufferBase &) |
| void | report (ostream &os=cout) |
| void | set_dim (int) |
| int | sizeb () |
| void | write (istream &) |
| void | write (BufferBase &) |
Private Attributes | |
| int | _dim |
| int | _n [MRA_MAXDIM] |
Friends | |
| ostream & | operator<< (ostream &, MRAsbn &) |
| BufferBase & | operator<< (BufferBase &, MRAsbn &) |
| istream & | operator>> (istream &, MRAsbn &) |
| BufferBase & | operator>> (BufferBase &, MRAsbn &) |
|
|
Definition at line 75 of file MRAsbn.h. References _n.
|
|
|
Definition at line 72 of file MRAsbn.h.
00072 : _dim(dim) {} |
|
|
Definition at line 93 of file MRAsbn.h.
|
|
|
Definition at line 82 of file MRAsbn.h. Referenced by operator()(), and operator=().
|
|
|
Definition at line 145 of file MRAsbn.h. Referenced by MCFsbfilename().
00145 { return _dim; }
|
|
|
Definition at line 119 of file MRAsbn.h. Referenced by operator!=(), and operator==().
|
|
|
Definition at line 131 of file MRAsbn.h. References is_equal().
00131 { return !is_equal(rhs); }
|
|
|
Definition at line 109 of file MRAsbn.h.
00110 {
00111 _dim = dim;
00112 return *this;
00113 }
|
|
|
Definition at line 103 of file MRAsbn.h. References copy().
00104 {
00105 return copy(sbn);
00106 }
|
|
|
Definition at line 160 of file MRAsbn.h. References write().
00161 {
00162 write(buffer);
00163 return *this;
00164 }
|
|
|
Definition at line 100 of file MRAsbn.h. References copy().
00100 { return copy(rhs); }
|
|
|
Definition at line 90 of file MRAsbn.h. References copy().
00090 { return copy(rhs); }
|
|
|
Definition at line 128 of file MRAsbn.h. References is_equal().
00128 { return is_equal(rhs); }
|
|
|
Definition at line 174 of file MRAsbn.h. References read().
00175 {
00176 read(buffer);
00177 return *this;
00178 }
|
|
|
Definition at line 116 of file MRAsbn.h.
00116 { return _n[d]; }
|
|
|
Definition at line 190 of file MRAsbn.h.
|
|
|
Definition at line 167 of file MRAsbn.h. Referenced by operator<<(), and operator>>().
|
|
|
Definition at line 134 of file MRAsbn.h. Referenced by MCFTPrequest.report(), and MCFTPquote.report().
|
|
|
Definition at line 142 of file MRAsbn.h.
00142 { _dim = dim; }
|
|
|
Definition at line 148 of file MRAsbn.h. Referenced by MRAsbBase.hdrsizeb(), MCFTPrequest.sizeb(), and MCFTPquote.sizeb().
00148 { return _dim * 4; }
|
|
|
Definition at line 181 of file MRAsbn.h.
|
|
|
Definition at line 151 of file MRAsbn.h. Referenced by operator<<(), and operator>>().
|
|
||||||||||||
|
Definition at line 220 of file MRAsbn.h.
00221 {
00222 sbn.read(os);
00223 return os;
00224 }
|
|
||||||||||||
|
Definition at line 206 of file MRAsbn.h.
00207 {
00208 sbn.read(buffer);
00209 return buffer;
00210 }
|
|
||||||||||||
|
Definition at line 213 of file MRAsbn.h.
00214 {
00215 sbn.write(is);
00216 return is;
00217 }
|
|
||||||||||||
|
Definition at line 199 of file MRAsbn.h.
00200 {
00201 sbn.write(buffer);
00202 return buffer;
00203 }
|
|
|
Definition at line 61 of file MRAsbn.h. Referenced by copy(), and is_equal(). |
|
|
Definition at line 62 of file MRAsbn.h. Referenced by copy(), is_equal(), and MRAsbn(). |
1.3.6