| Net-OpenMicroBlogging documentation | Contained in the Net-OpenMicroBlogging distribution. |
Net::OpenMicroBlogging::Message - An OpenMicroBlogging message
Keith Grennan, <kgrennan at cpan.org>
Copyright 2007 Keith Grennan, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Net-OpenMicroBlogging documentation | Contained in the Net-OpenMicroBlogging distribution. |
package Net::OpenMicroBlogging::Message; use warnings; use strict; use NEXT; sub init_omb_message { my $class = shift; $class->add_extension_param_pattern(qr/^omb_/); } sub set_defaults { my $self = shift; $self->{omb_version} = 'http://openmicroblogging.org/protocol/0.1'; $self->NEXT::set_defaults; }
1;