NAME
Twitter::Daily::Blog::Entry::Base - Generic blog entry
SYNOPSIS
use Twitter::Daily::Blog::Entry::Base;
my $entry = Twitter::Daily::Blog::Entry::Base->new();
$entry->setTitle("My first blog entry");
$entry->setBody('Some simple text<br/>\n' .
'Nonsense only');
saveEntryToFile( $entry->getEntry() );
DESCRIPTION
It represents a generic entry for a Blosxom blog
INTERFACE
new
Creates a new Twitter::Daily::Blog::Entry::Base object.
setTitle
Sets the entry title
setBody
Sets the entry body contents
getEntry
Returns the entry content
AUTHOR
Victor A. Rodriguez (Bit-Man)