RXmlEngDOMImplementation Class Reference

Link against: xmlengineDOM.lib


#include <
xmlengdomimplementation.h>

Detailed Description

The RXmlEngDOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.

http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-102161490

Dll XmlEngineDOM.lib
Since:
S60 v3.1

Public Member Functions

IMPORT_C void OpenL (RHeap *aHeap=NULL)
 Open method needed to initialize the XmlEngineDOM library and should be called before using any class/function from this library.
IMPORT_C void Close (TBool aCloseStdLib=ETrue)
 Close method.

Member Function Documentation

IMPORT_C void RXmlEngDOMImplementation::Close TBool  aCloseStdLib = ETrue  ) 
 

Close method.

It does cleanup of resources used by XmlengineDOM library. Client should call this method at the end of library usage. The library should not be used after this call. If needed, client can initialize the library again by calling Open() method. Libxml2 uses Symbian implementation of POSIX standard libraries. During closure of XmlEngineDOM library, the standard library is also closed by default. User can choose not to close standard libraries when XmlEngine shuts down, by specifying FALSE in aCloseStdLib flag.

Since:
S60 v3.2
Parameters:
aCloseStdLib A flag, if TRUE will close the STDLIB resources belonging to this thread. else STDLIB is not closed.
IMPORT_C void RXmlEngDOMImplementation::OpenL RHeap *  aHeap = NULL  ) 
 

Open method needed to initialize the XmlEngineDOM library and should be called before using any class/function from this library.

The initialization is required in every client thread in which it used. Calling this method multiple times in a thread is allowed. There should be a call to Close() for every call to Open, per thread.

Since:
S60 v3.2
Parameters:
aHeap - pointer to client created heap. If aHeap argument is NULL (by default) client thread's default heap is used.- NOT IMPLEMENTED YET
Returns:
Document handle

The documentation for this class was generated from the following file:

Copyright © Nokia Corporation 2001-2007
Back to top