File Coverage

blib/lib/Geo/OSM/MapFeatures/Feature/Value/Userdef.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 20 80.0


line stmt bran cond sub pod time code
1             package Geo::OSM::MapFeatures::Feature::Value::Userdef;
2              
3 1     1   930 use warnings;
  1         2  
  1         39  
4 1     1   6 use strict;
  1         2  
  1         37  
5              
6 1     1   4 use base qw(Geo::OSM::MapFeatures::Feature::Value);
  1         3  
  1         91  
7              
8 1     1   5 use overload '""' => \&stringify;
  1         2  
  1         8  
9              
10             =head1 NAME
11              
12             Geo::OSM::MapFeatures::Feature::Value::Userdef - User defined value type
13              
14             =head1 VERSION
15              
16             Version 0.01
17              
18             =cut
19              
20             our $VERSION = '0.01';
21              
22              
23             =head1 SYNOPSIS
24              
25             User defined means the feature value can be anything the user wants.
26              
27             =head1 FUNCTIONS
28              
29             =cut
30              
31             sub stringify {
32 0     0 0   my $self = shift;
33              
34 0           return "User defined";
35             }
36              
37             =head1 AUTHOR
38              
39             Knut Arne Bjørndal, C<< >>
40              
41             =head1 BUGS
42              
43             Please report any bugs or feature requests to C, or through
44             the web interface at L. I will be notified, and then you'll
45             automatically be notified of progress on your bug as I make changes.
46              
47              
48              
49              
50             =head1 SUPPORT
51              
52             You can find documentation for this module with the perldoc command.
53              
54             perldoc Geo::OSM::MapFeatures
55              
56              
57             You can also look for information at:
58              
59             =over 4
60              
61             =item * RT: CPAN's request tracker
62              
63             L
64              
65             =item * AnnoCPAN: Annotated CPAN documentation
66              
67             L
68              
69             =item * CPAN Ratings
70              
71             L
72              
73             =item * Search CPAN
74              
75             L
76              
77             =back
78              
79              
80             =head1 ACKNOWLEDGEMENTS
81              
82              
83             =head1 COPYRIGHT & LICENSE
84              
85             Copyright 2008 Knut Arne Bjørndal, all rights reserved.
86              
87             This program is free software; you can redistribute it and/or modify it
88             under the same terms as Perl itself.
89              
90              
91             =cut
92              
93             1; # End of Geo::OSM::MapFeatures::Feature::Value::Userdef