#include "ace/CDR_Stream.h"#include "ace/SString.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 1703 of file CDR_Stream.cpp.
01704 {
01705 os.write_string (x);
01706 return os.good_bit ();
01707 }
|
|
||||||||||||
|
Definition at line 1710 of file CDR_Stream.cpp.
01711 {
01712 is.read_string (x);
01713 return is.good_bit ();
01714 }
|
1.3.6