#include <Object.hh>
Inheritance diagram for pdf::core::CString:
a class to wrap up a normal string to a PDF string
|
constructor to initialize the string
00173 : m_string( str ) { } |
|
destructor do nothing
00175 { } |
|
write out the string. according to the PDF spec, there should be backets. Implements pdf::core::CObject.
00127 { 00128 return os << '(' << m_string << ')' ; 00129 } |
|
dynamic clone Implements pdf::core::CObject.
|
|
the wrapped string
|