#include <XMLTool.hh>
Public Member Functions | |
StrX (const XMLCh *const toTranscode) | |
~StrX () | |
const char * | localForm () const |
Private Attributes | |
char * | fLocalForm |
Definition at line 180 of file XMLTool.hh.
StrX::StrX | ( | const XMLCh *const | toTranscode | ) | [inline] |
Definition at line 186 of file XMLTool.hh.
00187 { 00188 // Call the private transcoding method 00189 fLocalForm = XMLString::transcode(toTranscode); 00190 }
StrX::~StrX | ( | ) | [inline] |
const char* StrX::localForm | ( | ) | const [inline] |
Definition at line 200 of file XMLTool.hh.
Referenced by operator<<().
00201 { 00202 return fLocalForm; 00203 }
char* StrX::fLocalForm [private] |