|
Revision 10090, 0.6 kB
(checked in by hanekomu, 5 years ago)
|
|
lang/perl/Class-Value-Contact: initial import
|
| Line | |
|---|
| 1 | package Class::Value::Contact::Address; |
|---|
| 2 | |
|---|
| 3 | # $Id: Address.pm 8617 2005-03-23 13:43:00Z gr $ |
|---|
| 4 | |
|---|
| 5 | use strict; |
|---|
| 6 | use warnings; |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | our $VERSION = '0.02'; |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | use base 'Class::Value::Contact'; |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | 1; |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | __END__ |
|---|
| 19 | |
|---|
| 20 | {% USE p = PodGenerated %} |
|---|
| 21 | |
|---|
| 22 | =head1 NAME |
|---|
| 23 | |
|---|
| 24 | {% p.package %} - contact-related value objects |
|---|
| 25 | |
|---|
| 26 | =head1 SYNOPSIS |
|---|
| 27 | |
|---|
| 28 | {% p.package %}->new; |
|---|
| 29 | |
|---|
| 30 | =head1 DESCRIPTION |
|---|
| 31 | |
|---|
| 32 | None yet. This is an early release; fully functional, but undocumented. The |
|---|
| 33 | next release will have more documentation. |
|---|
| 34 | |
|---|
| 35 | =head1 METHODS |
|---|
| 36 | |
|---|
| 37 | =over 4 |
|---|
| 38 | |
|---|
| 39 | {% p.write_methods %} |
|---|
| 40 | |
|---|
| 41 | =back |
|---|
| 42 | |
|---|
| 43 | {% p.write_inheritance %} |
|---|
| 44 | |
|---|
| 45 | {% PROCESS standard_pod %} |
|---|
| 46 | |
|---|
| 47 | =cut |
|---|
| 48 | |
|---|