PathElement::*: implement id() method
[id3fs.git] / lib / ID3FS / PathElement / Boolean.pm
1 package ID3FS::PathElement::Boolean;
2
3 use strict;
4 use warnings;
5
6 sub new
7 {
8     my $proto=shift;
9     my $class=ref($proto) || $proto;
10     my $self={};
11     bless($self,$class);
12
13     $self->{db}=shift;
14     $self->{name}=shift;
15
16     return $self;
17 }
18
19 sub type { return "boolean"; }
20 sub id { return shift->{id}; }
21
22 1;