use base ( "Date::Ethiopic::ER", "Date::Ethiopic::gez" );
#########################################################
# Do not change this, Do not put anything below this.
# File must return "true" value at termination
1;
##########################################################
__END__
=head1 NAME
Date::Ethiopic::ER::gez - ICalendar for the Ethiopic Calendar System.
=head1 SYNOPSIS
use Date::Ethiopic::ER::gez;
#
# typical instantiation:
#
my $gez = new Date::Ethiopic::ER::gez ( ical => '19950629' );
#
# Print Ge'ez day and month names:
#
print " Day Name: ", $gez->day_name, "\n";
print " Month Name: ", $gez->month_name, "\n";
#
# POSIX long date format:
#
print " Long Date: ", $gez->long_date, "\n";
print " Long Date: ", $gez->long_date('ethio'), "\n";
#
# POSIX full date format:
#
print " Full Date: ", $gez->full_date, "\n";
#
# Convert all numbers into Ethiopic:
#
print " Full Date: ", $gez->full_date('ethio'), "\n";
#
# Turn transcription on:
#
$gez->useTranscription ( 1 );
print " Full Date: ", $gez->full_date, "\n";
#
# Turn transcription off:
#
$gez->useTranscription ( 0 );
print " Full Date: ", $gez->full_date, "\n";
=head1 DESCRIPTION
The Date::Ethiopic::ER::gez module provides methods for accessing date information
in the Ethiopic calendar system. The module will also convert dates to
and from the Gregorian system.
=head1 CREDITS
=head1 REQUIRES
Date::Ethiopic, which is distributed in the same package with
this file.
=head1 COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=head1 BUGS
None known yet.
=head1 AUTHOR
Daniel Yacob, L<Yacob@EthiopiaOnline.Net|mailto:Yacob@EthiopiaOnline.Net>
=head1 SEE ALSO
The Yeha Project: L<http://yeha.sourceforge.net>
=cut