Thanks very much. Re: member variable initialization - Doh, yeah, I knew that :-). The parameterized constructor didn't register with me as an initialization. Still making my way up the C++ learning curve.
-will -----Original Message----- From: David Bertoni [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 13, 2007 3:01 PM To: xalan-c-users@xml.apache.org Subject: Re: Problem evaluating XPath expressions Member variables are defined in the class definition, but not initialized there. Initialization occurs in the constructor, in the member initialization list. The reason the constructor that accepts the DOMSupport instance is deprecated is because the XalanSourceTreeParserLiaison instance no longer needs the DOMSupport instance. You can simply use the constructor that takes a MemoryManager instance, and use the default. Dave