# ----------------------------------------------------------------------------- # Milkbone::Conf # Desc: Registers hooks for loading, modifying, reading, and saving XML # configuration. # ----------------------------------------------------------------------------- package Milkbone::Conf; use strict; use warnings; use Milkbone; use XML::Simple; # standard modules use XML::Simple; # global variables my $config; # exports require Exporter; our @EXPORT = qw(option set_option); sub load_options { my ($name, $file) = @_; $config->{$name} = XMLin($file); } sub option { } sub set_option { } 1;