in reply to Re^2: Inherit XML::DOM::Document?
in thread Inherit XML::DOM::Document?

Looking at XML-DOM, XML::DOM::Document is a documentation module, consisting of POD only. You cannot inherit anything from in. Try XML::DOM as base class instead.

Replies are listed 'Best First'.
Re^4: Inherit XML::DOM::Document?
by braden (Novice) on Apr 07, 2006 at 05:06 UTC

    Aha. I suspected something along those lines.

    I don't think inheriting from XML::DOM is what I want; the package I'm writing has the semantics of being a document. I probably don't want to use inheritance at all; and instead just contain a XML::DOM::Document.

    Thanks.