PathElement::*: implement id() method
[id3fs.git] / lib / ID3FS / PathElement / Boolean.pm
index 8f2f35f..cf7ff80 100644 (file)
@@ -10,9 +10,13 @@ sub new
     my $self={};
     bless($self,$class);
 
+    $self->{db}=shift;
     $self->{name}=shift;
 
     return $self;
 }
 
+sub type { return "boolean"; }
+sub id { return shift->{id}; }
+
 1;