hod > Config-Frontend-Tie > Config::Frontend::Tie

Download:
Config-Frontend-Tie-0.02.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.02   Source  

NAME ^

Config::Frontend::Tie - Ties hashes to Config::Frontend.

ABSTRACT ^

This module provides a hash interface to the Config::Frontend module.

SYNOPSYS ^

    tie my %conf,'Config::Frontend::Tie',new Config::Frontend(new Config::Backend::INIREG("Application"));

    ok($conf{"test"} eq "HI=Yes", "initial conf in \$string -> test=HI=Yes");
    ok($conf{"test1"} eq "NO!", "initial conf in \$string -> test1=NO!");
    ok($conf{"test2"} eq "%joep%", "initial conf in \$string -> test2=%joep%");
    ok($conf{"test3"} eq "ok\n%Hello", "initial conf in \$string -> test3=ok");

    $conf{"oesterhol"}="account";
    ok($conf{"oesterhol"} eq "account","initial conf in \$string -> oesterhol=account");

    for my $var (keys %conf) {
      print "$var=",$conf{$var},"\n";
    }

DESCRIPTION ^

The use of this module is obvious. One could look at perltie for more information.

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.