#include <iostream.h>#include "BufferBase.h"#include "MRAclevel.h"#include "MRAcrange.h"Include dependency graph for MRAcspec.h:

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

Go to the source code of this file.
Data Structures | |
| class | MRAcspec |
Functions | |
| ostream & | operator<< (ostream &os, MRAcspec &cspec) |
| BufferBase & | operator<< (BufferBase &buffer, MRAcspec &cspec) |
| istream & | operator>> (istream &is, MRAcspec &cspec) |
| BufferBase & | operator>> (BufferBase &buffer, MRAcspec &cspec) |
|
||||||||||||
|
Definition at line 217 of file MRAcspec.h. References MRAcspec.read().
00218 {
00219 cspec.read(os);
00220 return os;
00221 }
|
|
||||||||||||
|
Definition at line 203 of file MRAcspec.h. References MRAcspec.read().
00204 {
00205 cspec.read(buffer);
00206 return buffer;
00207 }
|
|
||||||||||||
|
Definition at line 210 of file MRAcspec.h. References MRAcspec.write().
00211 {
00212 cspec.write(is);
00213 return is;
00214 }
|
|
||||||||||||
|
Definition at line 196 of file MRAcspec.h. References MRAcspec.write().
00197 {
00198 cspec.write(buffer);
00199 return buffer;
00200 }
|
1.3.6