summaryrefslogtreecommitdiff
path: root/fml/lib/IO/Adapter/Array.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-28 06:42:38 +0000
committerfukachan <fukachan>2001-01-28 06:42:38 +0000
commita073e7b6028b475043bea203892eba1e8cfe48b1 (patch)
treea8ffaa7f486ac5abe549c7da61a819cccae3cb61 /fml/lib/IO/Adapter/Array.pm
parent4e58304342b32b569f76095a8fcc19f5d0deec05 (diff)
downloadfml8-a073e7b6028b475043bea203892eba1e8cfe48b1.tar.gz
fml8-a073e7b6028b475043bea203892eba1e8cfe48b1.tar.bz2
fml8-a073e7b6028b475043bea203892eba1e8cfe48b1.zip
add test tools
add prototype of array_reference s/array_on_memory/array_on_memory_by_code/ clean up/update documents
Diffstat (limited to 'fml/lib/IO/Adapter/Array.pm')
-rw-r--r--fml/lib/IO/Adapter/Array.pm67
1 files changed, 67 insertions, 0 deletions
diff --git a/fml/lib/IO/Adapter/Array.pm b/fml/lib/IO/Adapter/Array.pm
new file mode 100644
index 00000000..4caaee1d
--- /dev/null
+++ b/fml/lib/IO/Adapter/Array.pm
@@ -0,0 +1,67 @@
+#-*- 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.
+#
+# $Id$
+# $FML$
+#
+
+package IO::MapAdapter::Array;
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use Carp;
+
+require Exporter;
+@ISA = qw(Exporter);
+
+
+sub new
+{
+ my ($self) = @_;
+ my ($type) = ref($self) || $self;
+ my $me = {};
+ return bless $me, $type;
+}
+
+
+#####
+##### This is just a dummy yet now.
+#####
+
+
+=head1 NAME
+
+IO::MapAdapter::Array.pm - what is this
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=head1 CLASSES
+
+=head1 METHODS
+
+=item C<new()>
+
+... what is this ...
+
+=head1 AUTHOR
+
+Ken'ichi Fukamachi
+
+=head1 COPYRIGHT
+
+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
+
+IO::MapAdapter::Array.pm appeared in fml5.
+
+=cut
+
+1;