File Coverage

lib/Draft/Protozoa/Eml/Reference/Draft1.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 30 30 100.0


line stmt bran cond sub pod time code
1             package Draft::Protozoa::Eml::Reference::Draft1;
2              
3             =head1 NAME
4              
5             Draft::Protozoa::Eml::Reference::Draft1 - CAD reference drawing-object
6              
7             =head1 SYNOPSIS
8              
9             Points to one or more L objects and places them in
10             space.
11              
12             =cut
13              
14 1     1   6 use strict;
  1         2  
  1         34  
15 1     1   4 use warnings;
  1         2  
  1         32  
16 1     1   4 use Draft::Drawing;
  1         2  
  1         31  
17 1     1   6 use Draft::Protozoa::Eml;
  1         1  
  1         25  
18 1     1   382 use Draft::Entity::Reference;
  1         3  
  1         30  
19              
20 1     1   6 use vars qw /@ISA/;
  1         2  
  1         2572  
21             @ISA = qw /Draft::Protozoa::Eml Draft::Entity::Reference/;
22              
23             =pod
24              
25             =head1 DESCRIPTION
26              
27             A reference has some interesting attributes; coordinates for placing
28             it in space, paths to L objects and parts of them to
29             ignore.
30              
31             =cut
32              
33             sub _parse
34             {
35 2     2   4 my $self = shift;
36 2         3 my $data = shift;
37              
38 2         12 $self->{0} = $data->{0};
39 2         4 $self->{location} = $data->{location};
40 2         14 $self->{ignore} = $data->{ignore};
41             }
42              
43             1;