aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/ManaTools/Shared/disk_backend/IO.pm36
1 files changed, 35 insertions, 1 deletions
diff --git a/lib/ManaTools/Shared/disk_backend/IO.pm b/lib/ManaTools/Shared/disk_backend/IO.pm
index a143e54b..f8ea3ee4 100644
--- a/lib/ManaTools/Shared/disk_backend/IO.pm
+++ b/lib/ManaTools/Shared/disk_backend/IO.pm
@@ -71,7 +71,7 @@ has 'db' => (
isa => 'ManaTools::Shared::disk_backend',
init_arg => undef,
lazy => 1,
- default => undef,
+ default => undef
);
has 'id' => (
@@ -117,4 +117,38 @@ sub unhook {
$self->db->rmio($self);
}
+#=============================================================
+
+=head2 findin
+
+=head3 DESCRIPTION
+
+ this method find the Parts it's an in for
+
+=cut
+
+#=============================================================
+sub findin {
+ my $self = shift;
+ my $db = $self->db();
+ return $db->findin($self, @_);
+}
+
+#=============================================================
+
+=head2 findout
+
+=head3 DESCRIPTION
+
+ this method find the Parts it's an out for
+
+=cut
+
+#=============================================================
+sub findout {
+ my $self = shift;
+ my $db = $self->db();
+ return $db->findout($self, @_);
+}
+
1;