[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
DATA_RECOVERY
/
ALL BACKUP
/
SISMADAK SERVER
/
22-04-2019
/
xampp
/
perl
/
vendor
/
lib
/
DBM
/
Deep
/
[
Home
]
File: Sector.pm
package DBM::Deep::Sector; use 5.008_004; use strict; use warnings FATAL => 'all'; use Scalar::Util (); sub new { my $self = bless $_[1], $_[0]; Scalar::Util::weaken( $self->{engine} ); $self->_init; return $self; } sub _init {} sub clone { my $self = shift; return ref($self)->new({ engine => $self->engine, type => $self->type, data => $self->data, }); } sub engine { $_[0]{engine} } sub offset { $_[0]{offset} } sub type { $_[0]{type} } sub staleness { $_[0]{staleness} } sub load { die "load must be implemented in a child class" } 1; __END__