NAME
Config::Backend::INIREG - a .ini or registry backend for Config::Frontend.
ABSTRACT
Config::Backend::INIREG
is an INI file (for UNIX OS's) or REGISTRY (for Windows) backend Config::Frontend. It uses Config::Backend::INI for .ini files. And Config::Backend::Registry for windows registry access.
Description
See Config::Backend::INI or Config::Backend::Registry.
For Non MSWin32 Operating Systems
new(appname) --> Config::Backend::INIREG
Invoked with a valid Application Name, it will try to instantiate Config::Backend::INI backend with $HOME/.appname.ini
filename.
will return a Config::Backend::INI object that is connected to this file.
All other functions
Are the same as for Config::Frontend.
For MSWin32 Operating Systems
new(appname) --> Config::Backend::INIREG
Invoked with a valid Application Name, it will try to instantiate Config::Backend::Registry backend with appname
. Config::Backend::Registry will try to make the key 'appname' at HKEY_CURRENT_USER/Software/appname
.
will return a Config::Backend::Registry object that is connected to this part of the windows registry.
All other functions
Are the same as for Config::Frontend.
SEE ALSO
AUTHOR
Hans Oesterholt-Dijkema, <oesterhol@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2004 by Hans Oesterholt-Dijkema
This library is free software; you can redistribute it and/or modify it under Artistic license.