NAME

Blosxom::Header::Proxy

SYNOPSIS

use Blosxom::Header::Proxy;

my $proxy = tie my %proxy => 'Blosxom::Header::Proxy';

DESCRIPTION

METHODS

$proxy = tie %proxy => 'Blosxom::Header::Proxy'

Associates a new hash instance with Blosxom::Header::Proxy.

%proxy = ()

A shortcut for

%{ $blosxom::header } = ( -type => q{} );
$bool = %proxy
$blosxom::header = { -type => q{} };
$bool = %proxy; # false

$blosxom::header = {};
$bool = %proxy; # true
$bool = $proxy->is_initialized

A shortcut for

$bool = ref $blosxom::header eq 'HASH';

SEE ALSO

Blosxom::Header, perltie

AUTHOR

Ryo Anazawa (anazawa@cpan.org)

LICENSE AND COPYRIGHT

Copyright (c) 2011-2012 Ryo Anazawa. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.