![]() |
StreamWriter Class Reference#include <StreamWriter.h>
Collaboration diagram for StreamWriter:
![]()
Detailed DescriptionDefinition at line 45 of file StreamWriter.h. Constructor & Destructor Documentation
Member Function Documentation
Definition at line 48 of file StreamWriter.cpp. References IStream::IStreamWrite(), and m_stream. 00049 { 00050 m_stream.IStreamWrite(buf, strlen(buf)); 00051 return *this; 00052 }
Definition at line 55 of file StreamWriter.cpp. References IStream::IStreamWrite(), and m_stream. 00056 { 00057 m_stream.IStreamWrite(str.c_str(), str.size()); 00058 return *this; 00059 }
Definition at line 62 of file StreamWriter.cpp. References Utility::l2string(). 00063 { 00064 *this << Utility::l2string(x); 00065 return *this; 00066 }
Definition at line 69 of file StreamWriter.cpp. References Utility::l2string(). 00070 { 00071 *this << Utility::l2string(x); 00072 return *this; 00073 }
Definition at line 76 of file StreamWriter.cpp. References Utility::l2string(). 00077 { 00078 *this << Utility::l2string(x); 00079 return *this; 00080 }
Definition at line 83 of file StreamWriter.cpp. References Utility::ToString(). 00084 { 00085 *this << Utility::ToString(x); 00086 return *this; 00087 }
Member Data Documentation
The documentation for this class was generated from the following files: |