You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by Bill Schindler <de...@bitranch.com> on 2000/12/04 16:56:39 UTC

Re: Going through the tree [COM]

"Josh Brown  (GENERIZE)" <jo...@generize.com> wrote:
> for (j = 1; j < children; j++)
> {
> 	Xerces::IXMLDOMElementPtr child = Here->GetchildNodes()->Getitem(j);
>	int node_type = child->GetnodeType();
>	if (node_type != Xerces::NODE_TEXT)
>		Go_Through_Tree(child);
> }

After grepping around in Xerces' source, I finally figured out that this is
COM. (Until then, I was completely mystified.) I've added a [COM] to the
subject in hope that we get one of the COM expert's attention.


--Bill