#include <iostream.h>#include <string.h>#include "utility.h"#include "BufferBase.h"Include dependency graph for MCFTPid.h:

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

Go to the source code of this file.
Data Structures | |
| struct | MCFTPid |
Functions | |
| ostream & | operator<< (ostream &os, MCFTPid &id) |
| BufferBase & | operator<< (BufferBase &buffer, MCFTPid &id) |
| istream & | operator>> (istream &is, MCFTPid &id) |
| BufferBase & | operator>> (BufferBase &buffer, MCFTPid &id) |
|
||||||||||||
|
Definition at line 430 of file MCFTPid.h.
00431 {
00432 id.read(os);
00433 return os;
00434 }
|
|
||||||||||||
|
Definition at line 416 of file MCFTPid.h.
00417 {
00418 id.read(buffer);
00419 return buffer;
00420 }
|
|
||||||||||||
|
Definition at line 437 of file MCFTPid.h.
00438 {
00439 id.write(is);
00440 return is;
00441 }
|
|
||||||||||||
|
Definition at line 423 of file MCFTPid.h.
00424 {
00425 id.write(buffer);
00426 return buffer;
00427 }
|
1.3.6