|
ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
Annotate(3) User Contributed Perl Documentation Annotate(3)
NAME
Algorithm::Annotate - represent a series of changes in annotate form
SYNOPSIS
use Algorithm::Annotate;
my $ann = Algorithm::Annotate->new ();
$ann->add ($info1, \@seq1);
$ann->add ($info2, \@seq2); $ann->add ($info3, \@seq3);
$result = $ann->result;
DESCRIPTION
Algorithm::Annotate generates a list that is useful for generating output simliar to "cvs annotate".
TODO
Might parse diff output and accumulate them for generating the annotate list.
AUTHORS
Chia-liang Kao <clkao@clkao.org>
COPYRIGHT
Copyright 2003 by Chia-liang Kao <clkao@clkao.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
See <http://www.perl.com/perl/misc/Artistic.html
perl v5.8.8 2003-09-25 Annotate(3)
|
|