Bing::Search::Result - Base class for Results


Bing-Search documentation Contained in the Bing-Search distribution.

Index


Code Index:

NAME

Top

Bing::Search::Result - Base class for Results

DESCRIPTION

Top

See the specific Result objects for what methods are available.

AUTHOR

Top

Dave Houston, dhouston@cpan.org, 2010

LICENSE

Top

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


Bing-Search documentation Contained in the Bing-Search distribution.

package Bing::Search::Result;
use Moose;

with 'Bing::Search::Role::Types::UrlType';

has 'data' => ( 
   is => 'rw',
   builder => '_populate'
#   trigger => \&_populate
);

sub _populate { 
   # nothing here but us chickens
}

__PACKAGE__->meta->make_immutable;