1N/Apackage Time::tm;
1N/Ause strict;
1N/A
1N/Aour $VERSION = '1.00';
1N/A
1N/Ause Class::Struct qw(struct);
1N/Astruct('Time::tm' => [
1N/A map { $_ => '$' } qw{ sec min hour mday mon year wday yday isdst }
1N/A]);
1N/A
1N/A1;
1N/A__END__
1N/A
1N/A=head1 NAME
1N/A
1N/ATime::tm - internal object used by Time::gmtime and Time::localtime
1N/A
1N/A=head1 SYNOPSIS
1N/A
1N/ADon't use this module directly.
1N/A
1N/A=head1 DESCRIPTION
1N/A
1N/AThis module is used internally as a base class by Time::localtime And
1N/ATime::gmtime functions. It creates a Time::tm struct object which is
1N/Aaddressable just like's C's tm structure from F<time.h>; namely with sec,
1N/Amin, hour, mday, mon, year, wday, yday, and isdst.
1N/A
1N/AThis class is an internal interface only.
1N/A
1N/A=head1 AUTHOR
1N/A
1N/ATom Christiansen