NAME
Net::TinyIp::Util - a base class of util methods importer
SYNOPSIS
package Net::TinyIp::Util::NewWithNoCheck;
use base "Net::TinyIp::Util";
sub import_methods { "new_with_no_check" }
sub new_with_no_check { bless { splice @_, 1 }, shift }
package main;
use Net::TinyIp;
my $ip = Net::TinyIp->new_with_no_check( foo => "foo" );
DESCRIPTION
Net::TinyIp::Util is a base class which importing util methods.
AUTHOR
kuniyoshi <kuniyoshi@cpan.org>
SEE ALSO
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.