XMLString :: XMLString - Constructor
Implementation overview
- Copy constructor
 XMLString :: XMLString ( cXMLString )
- Create empty XM string
 XMLString :: XMLString (  )
- Load XML string from file
 XMLString :: XMLString ( sFilePath, eStringCodingType )
- Create XML string from string
 XMLString :: XMLString ( sValue )
Implementation details
- 
Copy constructor
 XMLString  :: XMLString ( odaba::utils::XMLString &cXMLString )
 - cXMLString - - Title unknown
 to list
- to list
- 
Load XML string from file
 XMLString  :: XMLString ( odaba::String &sFilePath, odaba::StringCodingTypes eStringCodingType )
 The constructor fill the XMLString from data contained in the file passed in sFilePath. When the file contains BOM data, text encoding information is taken from BOM. Otherwise, text encoding type may be passed in sStringCodingType. When no text encoding information is available, default text encoding is assumed (usually encoding set for the running system or the one defined in option DEFAULT_ENCODING. - sFilePath - Complete file path
- eStringCodingType
 - String encoding type
In case of unknown text encoding type undefinedCoding is used. 
 to list
- 
Create XML string from string
 XMLString  :: XMLString ( odaba::String &sValue )
 The string passed in sValue is interpreted as XML string. - sValue - String value
 to list

