NAME

Oak::Filer - Saves Persistent Descendants properties

HIERARCHY

Oak::Object

Oak::Filer

DESCRIPTION

This module implement the base for the modules which will save data for Persistent Objects.

OBJECT METHODS

store(NAME=>VALUE,NAME=>VALUE,...)

Abstract in Oak::Filer, stores the specified data.

load(NAME,NAME,...)

Abstract in Oak::Filer, loads the specified data.

EXAMPLES

# To create the default filer
require Oak::Filer;
my $filer = new Oak::Filer;
$filer->store(NAME=>VALUE,NAME=>VALUE);
my %props = $filer->load(NAME,NAME);

-------------

# to create a especialized filer
use base qw(Oak::Filer);

COPYRIGHT

Copyright (c) 2001 Daniel Ruoso <daniel@ruoso.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.