Xmms::Config - Perl Interface to xmms_cfg API


Xmms-Perl documentation Contained in the Xmms-Perl distribution.

Index


Code Index:

NAME

Top

Xmms::Config - Perl Interface to xmms_cfg API

SYNOPSIS

Top

 my $file = Xmms::Config->file; #$ENV{HOME}/.xmms/config
 my $cfg = Xmms::Config->new($file);

DESCRIPTION

Top

AUTHOR

Top

Doug MacEachern

SEE ALSO

Top

xmms(1), Xmms::Remote(3)


Xmms-Perl documentation Contained in the Xmms-Perl distribution.

package Xmms::Config;

use 5.005;
use strict;
use DynaLoader ();

{
    no strict;
    @ISA = qw(DynaLoader);
    $VERSION = '0.01';
    __PACKAGE__->bootstrap($VERSION);
}

1;
__END__