Geo::Google::Latitude::Base - Geo::Google::Latitude::Base


Geo-Google-Latitude documentation Contained in the Geo-Google-Latitude distribution.

Index


Code Index:

NAME

Top

Geo::Google::Latitude::Base - Geo::Google::Latitude::Base

SYNOPSIS

Top

  use base qw{Geo::Google::Latitude::Base};

DESCRIPTION

Top

USAGE

Top

CONSTRUCTOR

Top

new

  my $obj = Geo::Google::Latitude::Base->new();

METHODS

Top

initialize

Top

BUGS

Top

SUPPORT

Top

AUTHOR

Top

    Michael R. Davis
    CPAN ID: MRDVT
    STOP, LLC
    domain=>stopllc,tld=>com,account=>mdavis
    http://www.stopllc.com/

COPYRIGHT

Top

SEE ALSO

Top


Geo-Google-Latitude documentation Contained in the Geo-Google-Latitude distribution.
package Geo::Google::Latitude::Base;
use strict;
use warnings;

our $VERSION='0.01';

sub new {
  my $this = shift();
  my $class = ref($this) || $this;
  my $self = {};
  bless $self, $class;
  $self->initialize(@_);
  return $self;
}

sub initialize {
  my $self = shift();
  %$self=@_;
}

1;