ESPPlus::Storage::Writer - Writes ESP+ Storage repository files


ESPPlus-Storage documentation Contained in the ESPPlus-Storage distribution.

Index


Code Index:

NAME

Top

ESPPlus::Storage::Writer - Writes ESP+ Storage repository files

SYNOPSIS

Top

 N/A

DESCRIPTION

Top

This module is not yet implemented. When it is, it will allow you to create ESP+ Storage .REP files.

CONSTRUCTOR

Top

new
 $wr = ESPPlus::Storage::Writer->new(
     { compress_function => \&compress,
       handle            => $io_file_handle } );

COPYRIGHT AND LICENSE

Top

SEE ALSO

Top

ESPPlus::Storage


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__