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

Go to the source code of this file.
Functions | |
| const char * | get_rcsid_ace_CDR_Stream (const char *) |
| ACE_CDR::Boolean | operator<< (ACE_OutputCDR &os, const ACE_CString &x) |
| ACE_CDR::Boolean | operator>> (ACE_InputCDR &is, ACE_CString &x) |
Variables | |
| const char * | rcsid_ace_CDR_Stream = get_rcsid_ace_CDR_Stream ( rcsid_ace_CDR_Stream ) |
|
|
Definition at line 11 of file CDR_Stream.cpp.
00011 : CDR_Stream.cpp,v 1.1.1.4.2.2 2003/04/10 14:12:27 phil Exp $") |
|
||||||||||||
|
Definition at line 1610 of file CDR_Stream.cpp. References ACE_OutputCDR::good_bit, and ACE_OutputCDR::write_string.
01611 {
01612 os.write_string (x);
01613 return os.good_bit ();
01614 }
|
|
||||||||||||
|
Definition at line 1617 of file CDR_Stream.cpp. References ACE_InputCDR::good_bit, and ACE_InputCDR::read_string.
01618 {
01619 is.read_string (x);
01620 return is.good_bit ();
01621 }
|
|
|
Definition at line 11 of file CDR_Stream.cpp. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002