#============================================================= -*-Perl-*- # # Pod::POM::Node::Begin # # DESCRIPTION # Module implementing specific nodes in a Pod::POM, subclassed from # Pod::POM::Node. # # AUTHOR # Andy Wardley # Andrew Ford # # COPYRIGHT # Copyright (C) 2000, 2001 Andy Wardley. All Rights Reserved. # Copyright (C) 2009 Andrew Ford. All Rights Reserved. # # This module is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # # REVISION # $Id: Begin.pm 76 2009-08-20 20:41:33Z ford $ # #======================================================================== package Pod::POM::Node::Begin; use strict; use parent qw( Pod::POM::Node ); use vars qw( %ATTRIBS @ACCEPT $EXPECT $ERROR ); %ATTRIBS = ( format => undef ); @ACCEPT = qw( text verbatim code ); $EXPECT = 'end'; 1; =head1 NAME Pod::POM::Node::Begin - POM '=begin' node class =head1 SYNOPSIS =head1 DESCRIPTION This module implements a specialization of the node class to represent '=begin' elements. =head1 AUTHOR Andrew Ford Ea.ford@ford-mason.co.ukE Andy Wardley Eabw@kfs.orgE =head1 COPYRIGHT Copyright (C) 2000, 2001 Andy Wardley. All Rights Reserved. Copyright (C) 2009 Andrew Ford. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO Consult L for a discussion of nodes.