package Blank;
use strict;
$Blank::VERSION = 1.00;

=pod

   AUTHOR
      Tommy Butler <tommy @ atrixnet.com>
      phone: (817)-468-7716
      6711 Forest Park Dr
      Arlington, TX
           76001-8403

   COPYRIGHT   Tommy Butler. All rights reserved
   LISCENCE    This software is free, use/distribute under the GNU GPL.
   BUGS TO     Tommy Butler <perlmod @ atrixnet.com>

=cut


# --------------------------------------------------------
# Constructor
# --------------------------------------------------------
sub new { bless({ }, __PACKAGE__) }


# --------------------------------------------------------
# Blank::OOorNO()
# --------------------------------------------------------
sub OOorNO { $_[0] if (UNIVERSAL::isa($_[0], __PACKAGE__)) }


# --------------------------------------------------------
# Blank::DESTROY()
# --------------------------------------------------------
sub DESTROY { } sub AUTOLOAD { }


# --------------------------------------------------------
# end blank Class, return true on import
# --------------------------------------------------------

1;