Initial bulk commit for "Git on MSys"
[msysgit/historical-msysgit.git] / lib / perl5 / 5.6.1 / Time / tm.pm
blobfd47ad19a9546346874adda0e0991649623e3b08
1 package Time::tm;
2 use strict;
4 use Class::Struct qw(struct);
5 struct('Time::tm' => [
6 map { $_ => '$' } qw{ sec min hour mday mon year wday yday isdst }
7 ]);
9 1;
10 __END__
12 =head1 NAME
14 Time::tm - internal object used by Time::gmtime and Time::localtime
16 =head1 SYNOPSIS
18 Don't use this module directly.
20 =head1 DESCRIPTION
22 This module is used internally as a base class by Time::localtime And
23 Time::gmtime functions. It creates a Time::tm struct object which is
24 addressable just like's C's tm structure from F<time.h>; namely with sec,
25 min, hour, mday, mon, year, wday, yday, and isdst.
27 This class is an internal interface only.
29 =head1 AUTHOR
31 Tom Christiansen