summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Merge/Utils.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-03-16 12:58:20 +0000
committerfukachan <fukachan>2004-03-16 12:58:20 +0000
commit04754dbac1da4f0d8877e56398033e6c62eb0e91 (patch)
tree6f43dc98056e0b4ced68b01437dd13becf5215c8 /fml/lib/FML/Merge/Utils.pm
parentd7308cc59ef1f6806001dd1fba4d2c94da7730d1 (diff)
downloadfml8-snap-20040316.tar.gz
fml8-snap-20040316.tar.bz2
fml8-snap-20040316.zip
import basic implementation of config file merging system from fml4 to fml8.snap-20040316
Diffstat (limited to 'fml/lib/FML/Merge/Utils.pm')
-rw-r--r--fml/lib/FML/Merge/Utils.pm61
1 files changed, 61 insertions, 0 deletions
diff --git a/fml/lib/FML/Merge/Utils.pm b/fml/lib/FML/Merge/Utils.pm
new file mode 100644
index 00000000..4c887a43
--- /dev/null
+++ b/fml/lib/FML/Merge/Utils.pm
@@ -0,0 +1,61 @@
+#-*- perl -*-
+#
+# Copyright (C) 2004 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.
+#
+# $FML: @template.pm,v 1.8 2004/01/01 07:29:27 fukachan Exp $
+#
+
+package FML::Merge::Utils;
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use Carp;
+
+=head1 NAME
+
+FML::Merge::Utils - what is this
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=head1 METHODS
+
+=head2 C<new()>
+
+=cut
+
+sub new
+{
+ my ($self) = @_;
+ my ($type) = ref($self) || $self;
+ my $me = {};
+ return bless $me, $type;
+}
+
+
+=head1 CODING STYLE
+
+See C<http://www.fml.org/software/FNF/> on fml coding style guide.
+
+=head1 AUTHOR
+
+Ken'ichi Fukamachi
+
+=head1 COPYRIGHT
+
+Copyright (C) 2004 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::Merge::Utils appeared in fml8 mailing list driver package.
+See C<http://www.fml.org/> for more details.
+
+=cut
+
+
+1;