#include <XMLSimpleStr.h>
Public Member Functions | |
operator const char * () const | |
operator std::string () const | |
XMLSimpleStr (const XMLCh *str) | |
~XMLSimpleStr () | |
Private Attributes | |
char * | string |
Definition at line 9 of file XMLSimpleStr.h.
XMLSimpleStr::XMLSimpleStr | ( | const XMLCh * | str | ) | [inline] |
Definition at line 11 of file XMLSimpleStr.h.
: string(XERCES_CPP_NAMESPACE_QUALIFIER XMLString::transcode(str)) {}
XMLSimpleStr::~XMLSimpleStr | ( | ) | [inline] |
Definition at line 15 of file XMLSimpleStr.h.
References fetchall_from_DQM_v2::release, and XERCES_CPP_NAMESPACE_QUALIFIER.
{ XERCES_CPP_NAMESPACE_QUALIFIER XMLString::release(&string); }
XMLSimpleStr::operator const char * | ( | ) | const [inline] |
XMLSimpleStr::operator std::string | ( | ) | const [inline] |
Definition at line 21 of file XMLSimpleStr.h.
References operator std::string().
Referenced by operator std::string().
{ return string; }
char* XMLSimpleStr::string [private] |
Definition at line 25 of file XMLSimpleStr.h.
Referenced by operator const char *().