8fe059dd3f08a3219baa10e52fd7ab533d20d9ac
[id3fs.git] / Tagval.pm
1 package ID3FS::PathElement::Tagval;
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->{name}=shift;
14
15     return $self;
16 }
17
18 sub type { return "tagval"; }
19
20 1;