| ESPPlus-Storage documentation | Contained in the ESPPlus-Storage distribution. |
ESPPlus::Storage::Writer - Writes ESP+ Storage repository files
N/A
This module is not yet implemented. When it is, it will allow you to create ESP+ Storage .REP files.
$wr = ESPPlus::Storage::Writer->new(
{ compress_function => \&compress,
handle => $io_file_handle } );
Copyright 2003, Joshua b. Jore. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of either:
a) the GNU General Public License as published by the Free Software Foundation; version 2, or
b) the "Artistic License" which comes with Perl.
| ESPPlus-Storage documentation | Contained in the ESPPlus-Storage distribution. |
package ESPPlus::Storage::Writer; use 5.006; use strict; use warnings; sub new { my $class = shift; my $p = shift; my $self = bless { %$p }, $class; return $self; } 1; __END__