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

Go to the source code of this file.
Functions | |
| const char * | get_rcsid_ace_SString (const char *) |
| ACE_OSTREAM_TYPE & | operator<< (ACE_OSTREAM_TYPE &os, const ACE_CString &cs) |
| ACE_OSTREAM_TYPE & | operator<< (ACE_OSTREAM_TYPE &os, const ACE_WString &ws) |
| ACE_OSTREAM_TYPE & | operator<< (ACE_OSTREAM_TYPE &os, const ACE_SString &ss) |
Variables | |
| const char * | rcsid_ace_SString = get_rcsid_ace_SString ( rcsid_ace_SString ) |
|
|
Definition at line 19 of file SString.cpp.
00019 :55:30 brunsch Exp") |
|
||||||||||||
|
Definition at line 251 of file SString.cpp. References ACE_SString::fast_rep.
|
|
||||||||||||
|
Definition at line 237 of file SString.cpp. References ACE_String_Base< ACE_WSTRING_TYPE >::fast_rep.
00238 {
00239 // @@ Need to figure out how to print the "wide" string
00240 // on platforms that don't support "wide" strings.
00241 #if defined (ACE_HAS_WCHAR)
00242 os << ACE_Wide_To_Ascii (ws.fast_rep ()).char_rep ();
00243 #else
00244 ACE_UNUSED_ARG (ws);
00245 os << "(*non-printable string*)";
00246 #endif
00247 return os;
00248 }
|
|
||||||||||||
|
Definition at line 229 of file SString.cpp. References ACE_String_Base< char >::fast_rep.
|
|
|
Definition at line 19 of file SString.cpp. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002