| Net-GPSD3 documentation | Contained in the Net-GPSD3 distribution. |
Net::GPSD3::Base - Net::GPSD3 base object
use base qw{Net::GPSD3::Base};
Log on RT and Send to gpsd-dev email list
DavisNetworks.com supports all Perl applications including this package.
Try gpsd-dev email list
Michael R. Davis CPAN ID: MRDVT STOP, LLC domain=>michaelrdavis,tld=>com,account=>perl 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.
| Net-GPSD3 documentation | Contained in the Net-GPSD3 distribution. |
package Net::GPSD3::Base; use strict; use warnings; our $VERSION='0.12';
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;