#include "ace/CDR_Stream.h"#include "ace/SString.h"#include "ace/Auto_Ptr.h"Include dependency graph for CDR_Stream.cpp:

Go to the source code of this file.
Functions | |
| ACE_CDR::Boolean | operator<< (ACE_OutputCDR &os, const ACE_CString &x) |
| ACE_CDR::Boolean | operator>> (ACE_InputCDR &is, ACE_CString &x) |
|
||||||||||||
|
Definition at line 1800 of file CDR_Stream.cpp.
01801 {
01802 os.write_string (x);
01803 return os.good_bit ();
01804 }
|
|
||||||||||||
|
Definition at line 1807 of file CDR_Stream.cpp.
01808 {
01809 is.read_string (x);
01810 return is.good_bit ();
01811 }
|
1.3.6