package Audio::Metadata::Flac::Block::SeekTable;

use strict;
use warnings;

use Any::Moose;


extends 'Audio::Metadata::Flac::Block';


__PACKAGE__->meta->make_immutable;


sub type_code {
    ## Overriden.

    3;
}


no Any::Moose;


1;


__END__

=head1 NAME

Audio::Metadata::Flac::Block::SeekTable - Representation of SEEKTABLE type block of FLAC metadata.

=head1 VERSION

Version 0.01

=cut

=head1 DESCRIPTION

For internal use only by L<Audio::Metadata::Flac>.

=head1 AUTHOR

Egor Shipovalov, C<< <kogdaugodno at gmail.com> >>

=head1 LICENSE AND COPYRIGHT

Copyright 2010 Egor Shipovalov.

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

=cut