| CVSUtils documentation | Contained in the CVSUtils distribution. |
CVX::Utils - Placeholder for Package Values.
use PACKAGE qw( $PACKAGE $VERSION );
This module is currently just a placeholder for package-specifics.
Called CVX:: because CVS has the wibbles when handling a directory called CVS... :-)
Email the author.
Martyn J. Pearce fluffy@cpan.org
Copyright (c) 2001, 2002, 2003 Martyn J. Pearce. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__