summaryrefslogtreecommitdiff
path: root/regress/simulation/@template.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-08-07 12:23:48 +0000
committerfukachan <fukachan>2001-08-07 12:23:48 +0000
commit078421d24d440f907eb686faf722f85daff22301 (patch)
treee589d7b536836338f7e4bf3f730548f157ab7838 /regress/simulation/@template.pm
parent13e5488261d1b881f36fc8ee18cf62401946ea1d (diff)
downloadfml8-078421d24d440f907eb686faf722f85daff22301.tar.gz
fml8-078421d24d440f907eb686faf722f85daff22301.tar.bz2
fml8-078421d24d440f907eb686faf722f85daff22301.zip
move template of perl module to simulation/
Diffstat (limited to 'regress/simulation/@template.pm')
-rw-r--r--regress/simulation/@template.pm57
1 files changed, 57 insertions, 0 deletions
diff --git a/regress/simulation/@template.pm b/regress/simulation/@template.pm
new file mode 100644
index 00000000..6ae1934e
--- /dev/null
+++ b/regress/simulation/@template.pm
@@ -0,0 +1,57 @@
+#-*- perl -*-
+#
+# 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.
+#
+# $FML: __template.pm,v 1.6 2001/05/16 13:30:46 fukachan Exp $
+#
+
+package __MODULE_NAME__;
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use Carp;
+
+=head1 NAME
+
+__MODULE_NAME__ - 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 AUTHOR
+
+__YOUR_NAME__
+
+=head1 COPYRIGHT
+
+Copyright (C) 2001 __YOUR_NAME__
+
+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
+
+__MODULE_NAME__ appeared in fml5 mailing list driver package.
+See C<http://www.fml.org/> for more details.
+
+=cut
+
+
+1;