Gedcom::Event - a module to manipulate Gedcom events


Gedcom documentation Contained in the Gedcom distribution.

Index


Code Index:

NAME

Top

Gedcom::Event - a module to manipulate Gedcom events

Version 1.16 - 24th April 2009

SYNOPSIS

Top

  use Gedcom::Event;

DESCRIPTION

Top

A selection of subroutines to handle events in a gedcom file.

Derived from Gedcom::Record.

HASH MEMBERS

Top

None.

METHODS

Top

None yet.

Individual functions


Gedcom documentation Contained in the Gedcom distribution.

# Copyright 1999-2009, Paul Johnson (paul@pjcj.net)

# This software is free.  It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.pjcj.net

# documentation at __END__

use strict;

require 5.005;

package Gedcom::Event;

use Gedcom::Record 1.16;

use vars qw($VERSION @ISA);
$VERSION = "1.16";
@ISA     = qw( Gedcom::Record );

# sub type
# {
#   my $self = shift;
#   $self->tag_value("TYPE")
# }

# sub date
# {
#   my $self = shift;
#   $self->tag_value("DATE")
# }

# sub place
# {
#   my $self = shift;
#   $self->tag_value("PLAC")
# }

1;

__END__