CVX::Utils - Placeholder for Package Values.


CVSUtils documentation Contained in the CVSUtils distribution.

Index


Code Index:

NAME

Top

CVX::Utils - Placeholder for Package Values.

SYNOPSIS

Top

  use PACKAGE qw( $PACKAGE $VERSION );

DESCRIPTION

Top

This module is currently just a placeholder for package-specifics.

Called CVX:: because CVS has the wibbles when handling a directory called CVS... :-)

CLASS CONSTANTS

Top

REPORTING BUGS

Top

Email the author.

AUTHOR

Top

Martyn J. Pearce fluffy@cpan.org

COPYRIGHT

Top


CVSUtils documentation Contained in the CVSUtils distribution.
# (X)Emacs mode: -*- cperl -*-

package CVX::Utils;

# ----------------------------------------------------------------------------

# Pragmas -----------------------------

require 5.005_62;
use strict;
use warnings;

# Inheritance -------------------------

use base qw( Exporter );
our @EXPORT_OK = qw( $PACKAGE $VERSION );

# Utility -----------------------------

use Carp               qw( croak );
use Fatal              qw( :void open sysopen close seek );

# ----------------------------------------------------------------------------

# CLASS METHODS --------------------------------------------------------------

# -------------------------------------
# CLASS CONSTANTS
# -------------------------------------

use vars qw( $PACKAGE $VERSION );
$PACKAGE = 'CVSUtils';
$VERSION = '1.01';

# ----------------------------------------------------------------------------

1; # keep require happy.

__END__