| 1 |
## --------------------------------------------------------------------------- |
| 2 |
## $Id: Basic.pm,v 1.1 2003/02/09 04:55:04 joko Exp $ |
| 3 |
## --------------------------------------------------------------------------- |
| 4 |
## $Log: Basic.pm,v $ |
| 5 |
## Revision 1.1 2003/02/09 04:55:04 joko |
| 6 |
## + initial commit |
| 7 |
## |
| 8 |
## --------------------------------------------------------------------------- |
| 9 |
|
| 10 |
|
| 11 |
package Data::Storage::Handler::File::Basic; |
| 12 |
|
| 13 |
use strict; |
| 14 |
use warnings; |
| 15 |
|
| 16 |
# FIXME: introduce some declaration here which |
| 17 |
# *really* merges the contents of shortcuts::files |
| 18 |
# replacing all from below |
| 19 |
|
| 20 |
require Exporter; |
| 21 |
#use base qw( shortcuts::files Exporter ); |
| 22 |
our @ISA = qw( Exporter ); |
| 23 |
our @EXPORT_OK = qw( |
| 24 |
s2f |
| 25 |
a2f |
| 26 |
f2s |
| 27 |
); |
| 28 |
|
| 29 |
use shortcuts::files qw( s2f a2f f2s ); |
| 30 |
|
| 31 |
1; |
| 32 |
__END__ |