CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
lhef::XMLSimpleStr Class Reference

#include <XMLUtils.h>

Public Member Functions

 operator const char * () const
 
 XMLSimpleStr (const XMLCh *str)
 
 ~XMLSimpleStr ()
 

Static Public Member Functions

static bool isAllSpaces (const XMLCh *str, unsigned int length)
 
static bool isSpace (XMLCh ch)
 

Private Attributes

char * string
 

Detailed Description

Definition at line 70 of file XMLUtils.h.

Constructor & Destructor Documentation

lhef::XMLSimpleStr::XMLSimpleStr ( const XMLCh *  str)
inline

Definition at line 72 of file XMLUtils.h.

72  :
73  string(XERCES_CPP_NAMESPACE_QUALIFIER XMLString::transcode(str))
74  {}
#define XERCES_CPP_NAMESPACE_QUALIFIER
Definition: LHERunInfo.h:16
lhef::XMLSimpleStr::~XMLSimpleStr ( )
inline

Definition at line 76 of file XMLUtils.h.

References fetchall_from_DQM_v2::release, and XERCES_CPP_NAMESPACE_QUALIFIER.

#define XERCES_CPP_NAMESPACE_QUALIFIER
Definition: LHERunInfo.h:16

Member Function Documentation

static bool lhef::XMLSimpleStr::isAllSpaces ( const XMLCh *  str,
unsigned int  length 
)
inlinestatic

Definition at line 82 of file XMLUtils.h.

References XERCES_CPP_NAMESPACE_QUALIFIER.

Referenced by lhef::LHEReader::XMLHandler::characters().

84  XMLChar1_0::isAllSpaces(str, length); }
#define XERCES_CPP_NAMESPACE_QUALIFIER
Definition: LHERunInfo.h:16
static bool lhef::XMLSimpleStr::isSpace ( XMLCh  ch)
inlinestatic

Definition at line 86 of file XMLUtils.h.

References XERCES_CPP_NAMESPACE_QUALIFIER.

Referenced by lhef::LHEReader::XMLHandler::characters().

88  XMLChar1_0::isWhitespace(ch); }
#define XERCES_CPP_NAMESPACE_QUALIFIER
Definition: LHERunInfo.h:16
lhef::XMLSimpleStr::operator const char * ( ) const
inline

Definition at line 79 of file XMLUtils.h.

References string.

80  { return string; }

Member Data Documentation

char* lhef::XMLSimpleStr::string
private

Definition at line 91 of file XMLUtils.h.

Referenced by operator const char *().