Tree::Transform::XSLTish::Context - helper class


Tree-Transform-XSLTish documentation Contained in the Tree-Transform-XSLTish distribution.

Index


Code Index:

NAME

Top

Tree::Transform::XSLTish::Context - helper class

AUTHOR

Top

Gianni Ceccarelli <dakkar@thenautilus.net>


Tree-Transform-XSLTish documentation Contained in the Tree-Transform-XSLTish distribution.

package Tree::Transform::XSLTish::Context;
use Moose;
use Carp::Clan qw(^Tree::Transform::XSLTish);

our $VERSION='0.3';

has 'current_node' => ( is => 'rw', isa => 'Object' );
has 'node_list' => ( is => 'rw', isa => 'ArrayRef[Object]' );

__PACKAGE__->meta->make_immutable;no Moose;1;
__END__