package File::Format::RIFF::List; use base File::Format::RIFF::Container; our $VERSION = '0.01'; sub new { my ( $proto, %args ) = @_; die "Cannot set id of LIST chunk" if ( exists $args{id} ); return $proto->SUPER::new( %args, id => 'LIST' ); } 1; =pod =head1 NAME Tibco::Rv::List - RIFF LIST =head1 SYNOPSIS =head1 DESCRIPTION =head1 AUTHOR Paul Sturm EIE =cut