NAME

Blosxom::Header::Object - Wraps subroutines exported by Blosxom::Header in an object

SYNOPSIS

use Blosxom::Header::Object;

my $h     = Blosxom::Header::Object->new( $blosxom::header );
my $value = $h->get( 'foo' );
my $bool  = $h->exists( 'foo' );

$h->set( foo => 'bar' );
$h->delete( 'foo' );

my @cookies = $h->get( 'Set-Cookie' );
$h->push_cookie( 'foo' );

$h->header; # same reference as $blosxom::header

DESCRIPTION

Wraps subroutines exported by Blosxom::Header in an object.

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.