NAME

Tree::Template::Declare::DAG_Node

SYNOPSIS

See Tree::Template::Declare.

SPECIFICITIES

This module will build trees using Tree::DAG_Node. You can make it use another module (assuming it has the same interface, for example Tree::DAG_Node::XPath) by passing the class name to the new method.

use Tree::Template::Declare builder => '+DAG_Node'; # default

use Tree::Template::Declare builder =>
    Tree::Template::Declare::DAG_Node->new('Tree::DAG_Node::XPath');
    # custom class

AUTHOR

Gianni Ceccarelli <dakkar@thenautilus.net>