Buzznet::Buzzword - Buzznet API Buzzword Object


Buzznet-API documentation Contained in the Buzznet-API distribution.

Index


Code Index:

NAME

Top

Buzznet::Buzzword - Buzznet API Buzzword Object

SYNOPSIS

Top

  use Buzznet::Buzzword;

DESCRIPTION

Top

This class is mainly used by Buzznet::API to encapsulate the Buzzword attributes

METHODS

Top

keyword

Returns the keyword for this Buzzword

title

Returns the title for this Buzzword

SEE ALSO

Top

Check out http://www.buzznet.com/developers for the latest tools and libraries available for all languages and platforms. The complete XML-RPC Buzznet API can be found at http://www.buzznet.com/developers/apidocs/.

Buzznet::Entry Buzznet::Gallery Buzznet::Comment Buzznet::Profile Buzznet::API

AUTHOR

Top

Kevin Woolery, <kevin@buzznet.com>

COPYRIGHT AND LICENSE

Top


Buzznet-API documentation Contained in the Buzznet-API distribution.

package Buzznet::Buzzword;

use strict;
use warnings;

require Exporter;
use AutoLoader qw(AUTOLOAD);

our @ISA = qw(Exporter);

# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.

# This allows declaration	use Buzznet::Buzzword ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
	
) ] );

our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );

our @EXPORT = qw(
	
);

our $VERSION = '0.01';

#require XSLoader;
#XSLoader::load('Buzznet::Buzzword', $VERSION);

# Preloaded methods go here.

sub new 
{
  my ($package,@refs) = @_;
  my $inst = {@refs};
  $inst->{"error"} = undef;
  return bless($inst,$package);
}

sub keyword
{
  my $self = shift;
  return $self->{"keyword"};
}

sub title
{
  my $self = shift;
  return $self->{"title"};
}

# Autoload methods go after =cut, and are processed by the autosplit program.

1;
__END__