Software-License

 view release on metacpan or  search on metacpan

lib/Software/License.pm  view on Meta::CPAN

#pod Each argument, if not specified, is defaulted to another one, or to properly
#pod capitalized "this program", if both arguments are omitted.
#pod
#pod =cut

sub new {
  my ($class, $arg) = @_;

  Carp::croak "no copyright holder specified" unless $arg->{holder};

  bless $arg => $class;
}

#pod =method year
#pod
#pod =method holder
#pod
#pod These methods are attribute readers.
#pod
#pod =cut



( run in 0.347 second using v1.01-cache-2.11-cpan-65fba6d93b7 )