
XML::Atom::Ext::Threading::InReplyTo

use XML::Atom::Entry;
use XML::Atom::Ext::Threading;
my $entry = XML::Atom::Entry->new;
# "in-reply-to" extension element
my $reply = XML::Atom::Ext::Threading::InReplyTo->new;
$reply->ref('tag:example.org,2005:1');
$reply->href('http://www.example.org/entries/1');
$reply->type('application/xhtml+xml');
$entry->in_reply_to($reply);

returns 'in-reply-to'
returns the Atom Threading namespace, http://purl.org/syndication/thread/1.0

NAKAGAWA Masaki <masaki@cpan.org>

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