The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TAP::DOM::Config;
BEGIN {
  $TAP::DOM::Config::AUTHORITY = 'cpan:SCHWIGON';
}
{
  $TAP::DOM::Config::VERSION = '0.11';
}
# ABSTRACT: TAP::DOM::Config - Accessors for TAP::DOM specific parse config

use 5.006;
use strict;
use warnings;

use Class::XSAccessor
    chained     => 1,
    constructor => 'new',
    accessors   => [qw( ignore
                        ignorelines
                        usebitsets
                     )];

1;

__END__

=pod

=encoding utf-8

=head1 NAME

TAP::DOM::Config - TAP::DOM::Config - Accessors for TAP::DOM specific parse config

=head1 DESCRIPTION

The C<tapdom_config> part covers TAP::DOM specific parse options.

=head1 ACCESSORS & METHODS

=head2 new - constructor

=head2 ignore

=head2 ignorelines

=head2 usebitsets

=head1 AUTHOR

Steffen Schwigon <ss5@renormalist.net>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Steffen Schwigon.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut