#include <iostream.h>#include "BufferBase.h"Include dependency graph for MRAsbn.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| class | MRAsbn |
Defines | |
| #define | MRA_MAXDIM 4 |
Functions | |
| ostream & | operator<< (ostream &os, MRAsbn &sbn) |
| BufferBase & | operator<< (BufferBase &buffer, MRAsbn &sbn) |
| istream & | operator>> (istream &is, MRAsbn &sbn) |
| BufferBase & | operator>> (BufferBase &buffer, MRAsbn &sbn) |
|
|
|
|
||||||||||||
|
Definition at line 220 of file MRAsbn.h. References MRAsbn.read().
00221 {
00222 sbn.read(os);
00223 return os;
00224 }
|
|
||||||||||||
|
Definition at line 206 of file MRAsbn.h. References MRAsbn.read().
00207 {
00208 sbn.read(buffer);
00209 return buffer;
00210 }
|
|
||||||||||||
|
Definition at line 213 of file MRAsbn.h. References MRAsbn.write().
00214 {
00215 sbn.write(is);
00216 return is;
00217 }
|
|
||||||||||||
|
Definition at line 199 of file MRAsbn.h. References MRAsbn.write().
00200 {
00201 sbn.write(buffer);
00202 return buffer;
00203 }
|
1.3.6