| Geo-Google-Latitude documentation | Contained in the Geo-Google-Latitude distribution. |
Geo::Google::Latitude::Base - Geo::Google::Latitude::Base
use base qw{Geo::Google::Latitude::Base};
my $obj = Geo::Google::Latitude::Base->new();
Michael R. Davis
CPAN ID: MRDVT
STOP, LLC
domain=>stopllc,tld=>com,account=>mdavis
http://www.stopllc.com/
This program is free software licensed under the...
The BSD License
The full text of the license can be found in the LICENSE file included with this module.
| 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;