diff options
| author | fukachan <fukachan> | 2001-03-09 04:24:39 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-09 04:24:39 +0000 |
| commit | b08b2a5f71053fc4bf87141b84365285e0c90692 (patch) | |
| tree | bebcc32579a4ddc6d44c761390c4b27c511c5e4f /fml/lib/FML/Process/Configure.pm | |
| parent | 15776c09375567276f6cbf3321c780d6467540af (diff) | |
| download | fml8-b08b2a5f71053fc4bf87141b84365285e0c90692.tar.gz fml8-b08b2a5f71053fc4bf87141b84365285e0c90692.tar.bz2 fml8-b08b2a5f71053fc4bf87141b84365285e0c90692.zip | |
clean up documents
Diffstat (limited to 'fml/lib/FML/Process/Configure.pm')
| -rw-r--r-- | fml/lib/FML/Process/Configure.pm | 51 |
1 files changed, 42 insertions, 9 deletions
diff --git a/fml/lib/FML/Process/Configure.pm b/fml/lib/FML/Process/Configure.pm index 641caef3..5f55773f 100644 --- a/fml/lib/FML/Process/Configure.pm +++ b/fml/lib/FML/Process/Configure.pm @@ -17,10 +17,26 @@ use FML::Process::Kernel; use FML::Log qw(Log); use FML::Config; + +=head1 NAME + +FML::Process::Configure -- fmlconf and makefml + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +=cut + + require Exporter; @ISA = qw(FML::Process::Kernel Exporter); +# Descriptions: +# Arguments: $self $args +# Side Effects: +# Return Value: none sub new { my ($self, $args) = @_; @@ -30,13 +46,17 @@ sub new } -# dummy -sub prepare -{ - ; -} +# Descriptions: dummy yet now +# Arguments: $self $args +# Side Effects: +# Return Value: none +sub prepare { ; } +# Descriptions: +# Arguments: $self $args +# Side Effects: +# Return Value: none sub run { my ($curproc, $args) = @_; @@ -64,6 +84,10 @@ sub run } +# Descriptions: +# Arguments: $self $args +# Side Effects: +# Return Value: none sub _show_conf { my ($curproc, $args) = @_; @@ -82,14 +106,23 @@ sub AUTOLOAD } -=head1 NAME +=head1 AUTHOR -Configure -- fmlconf and makefml +Ken'ichi Fukamachi -=head1 SYNOPSIS +=head1 COPYRIGHT -=head1 DESCRIPTION +Copyright (C) 2001 Ken'ichi Fukamachi + +All rights reserved. This program is free software; you can +redistribute it and/or modify it under the same terms as Perl itself. + +=head1 HISTORY + +FML::Process::Configure appeared in fml5 mailing list driver package. +See C<http://www.fml.org/> for more details. =cut + 1; |
