IXMLDOMDocumentPtr and IXMLDOMDocument ?!?!
-
I try to save my data in my pocket pc application in xml with the MSXML DOM parser. I looked on some source codes and found out that are are many different classes (interfaces) like
"IXMLDOMDocumentPtr"
and"IXMLDOMDocument"
... what's the different between this classes (interfaces)? Daniel ;) --------------------------- Never change a running system! -
I try to save my data in my pocket pc application in xml with the MSXML DOM parser. I looked on some source codes and found out that are are many different classes (interfaces) like
"IXMLDOMDocumentPtr"
and"IXMLDOMDocument"
... what's the different between this classes (interfaces)? Daniel ;) --------------------------- Never change a running system!They basicly the same. The COM interfaces without the trailing Ptr are the raw interfaces, while the ones with the ptr are smart pointers which free the COM object if the interfaces isnt referenced anymore.
-
I try to save my data in my pocket pc application in xml with the MSXML DOM parser. I looked on some source codes and found out that are are many different classes (interfaces) like
"IXMLDOMDocumentPtr"
and"IXMLDOMDocument"
... what's the different between this classes (interfaces)? Daniel ;) --------------------------- Never change a running system!IXMLDOMDocument
is a COM interface.IXMLDOMDocument*
is an interface pointer on a particular instance of aDOMDocument
COM object.IXMLDOMDocumentPtr
is a typedef for a_com_ptr_t
that manages aIXMLDOMDocument*
. --Mike-- "Adventure. Excitement. A Jedi craves not these things." -- Silent Bob 1ClickPicGrabber - Grab & organize pictures from your favorite web pages, with 1 click! My really out-of-date homepage Sonork-100.19012 Acid_Helm -
IXMLDOMDocument
is a COM interface.IXMLDOMDocument*
is an interface pointer on a particular instance of aDOMDocument
COM object.IXMLDOMDocumentPtr
is a typedef for a_com_ptr_t
that manages aIXMLDOMDocument*
. --Mike-- "Adventure. Excitement. A Jedi craves not these things." -- Silent Bob 1ClickPicGrabber - Grab & organize pictures from your favorite web pages, with 1 click! My really out-of-date homepage Sonork-100.19012 Acid_HelmThanks! Daniel ;) --------------------------- Never change a running system!