in reply to Re: Inherit XML::DOM::Document?
in thread Inherit XML::DOM::Document?
yields:use XML::DOM; @ISA = qw( XML::DOM::Document );
andGlobal symbol "@ISA" requires explicit package name at lib/Literally +/Document.pm
yields:use XML::DOM::Document; @ISA = qw( XML::DOM::Document );
I'd like to do the normal thing for which one uses inheritance: extend existing functionality. The particular problem I'm trying to solve involves creating a DOM tree from scratch; while that's not directly related to my desire to use inheritance, it is another thing that the XML::DOM documentation doesn't make obvious (rather, it focuses on operating on a DOM tree constructed with the parser).Can't locate XML/DOM/Document.pm in @INC
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Inherit XML::DOM::Document?
by herveus (Prior) on Apr 06, 2006 at 11:57 UTC | |
by braden (Novice) on Apr 07, 2006 at 05:08 UTC | |
|
Re^3: Inherit XML::DOM::Document?
by Anonymous Monk on Apr 06, 2006 at 10:33 UTC | |
by braden (Novice) on Apr 07, 2006 at 05:06 UTC |